Files
ip-returner/.htaccess

14 lines
328 B
ApacheConf
Raw Normal View History

2017-01-10 03:44:42 +01:00
RewriteEngine On
RewriteBase /
2017-01-10 03:44:42 +01:00
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]+)/?$ /index.php?m=$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]+)/([^/]+)/?$ index.php?m=$1&t=$2 [L]
2023-06-14 13:39:19 +02:00
# Hide .git on webserver
RedirectMatch 404 /\.git