CoolFace
Apppublic

kenken999/php

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
.htaccess22 linesDownload Raw Back to public
1<IfModule mod_rewrite.c>2    <IfModule mod_negotiation.c>3        Options -MultiViews -Indexes4    </IfModule>5 6    RewriteEngine On7 8    # Handle Authorization Header9    RewriteCond %{HTTP:Authorization} .10    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]11 12    # Redirect Trailing Slashes If Not A Folder...13    RewriteCond %{REQUEST_FILENAME} !-d14    RewriteCond %{REQUEST_URI} (.+)/$15    RewriteRule ^ %1 [L,R=301]16 17    # Send Requests To Front Controller...18    RewriteCond %{REQUEST_FILENAME} !-d19    RewriteCond %{REQUEST_FILENAME} !-f20    RewriteRule ^ index.php [L]21</IfModule>22