osb/public/.htaccess

22 lines
593 B
ApacheConf
Raw Normal View History

2017-11-03 05:26:07 +00:00
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
2019-06-02 05:35:48 +00:00
Options -MultiViews -Indexes
2017-11-03 05:26:07 +00:00
</IfModule>
RewriteEngine On
2019-06-02 05:35:48 +00:00
# Handle Authorization Header
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
2017-11-03 05:26:07 +00:00
# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
2019-06-02 05:35:48 +00:00
RewriteCond %{REQUEST_URI} (.+)/$
RewriteRule ^ %1 [L,R=301]
2017-11-03 05:26:07 +00:00
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>