1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-11-22 17:12:30 +01:00
Pterodactyl-Panel/public/.htaccess

22 lines
593 B
ApacheConf
Raw Normal View History

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