Import source

This commit is contained in:
Steffen Lange 2019-04-05 18:55:31 +02:00
parent b397f4ab19
commit cbccd71059
2 changed files with 28 additions and 0 deletions

8
.htaccess Normal file
View file

@ -0,0 +1,8 @@
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^$ echoip.php [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) echoip.php?cmd=$1 [L]
</IfModule>