EchoIP/.htaccess
2019-04-05 18:55:31 +02:00

8 lines
209 B
ApacheConf

<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>