eesyphp/public_html/.htaccess
Benjamin Renard 6d8abbf391 Always detect requested URL from REQUEST_URI
It's permit to access raw URL parameter values without automatic 
urldecode when access using $_GET or $_REQUEST. Also add 
UrlRequest::get_param() method that allow to access raw parameters 
values (without any decoding).
2021-07-28 18:18:36 +02:00

8 lines
221 B
ApacheConf

RewriteEngine On
RewriteBase /eesyphp
# If the request is not for a valid file
RewriteCond %{REQUEST_FILENAME} !-f
# If the request is not for a valid link
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^ index.php [L]