Files
Web-NibblePoker/tools/.htaccess
Herwin c3ab5544e1 Added PHP minification, Removed years-old honeypot-related trash
Update .htaccess, clean.bat, and 11 more files...
2023-08-13 21:21:06 +02:00

14 lines
495 B
ApacheConf

# FIXME: The minified content scripts fail for some reason !
# Could be the missing closing php tag !!!
DirectoryIndex index.php index.html
# Redirecting any URL that starts with "/tools" to the root of this folder.
RewriteEngine On
RewriteRule ^\/?(tools\/)?[a-zA-Z0-9\-]+\/?$ index.php [NC]
# Redirecting any URL that starts with "/content" to the root of this folder.
#RewriteEngine On
#RewriteRule ^\/tools\/[a-zA-Z0-9\-]+\/?$ index.php [L]
# ^(?!\/.*\.(js|css)).*$ Should have worked :/