Also allow custom IPs and domains to be looked-up

This commit is contained in:
2017-09-18 23:56:11 +02:00
parent 97b44a0935
commit 6a46083bec
3 changed files with 175 additions and 23 deletions

View File

@@ -1,5 +1,10 @@
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?m=$1
RewriteRule ^([^/]+)/?$ /index.php?m=$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]+)/([^/]+)/?$ index.php?m=$1&t=$2 [L]