caipan_shop_admin/public/.htaccess

10 lines
359 B
ApacheConf
Raw Normal View History

2022-05-25 11:35:57 +00:00
<IfModule mod_rewrite.c>
2022-05-27 09:18:22 +00:00
SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1
2022-05-25 11:35:57 +00:00
Options +FollowSymlinks -Multiviews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !^(.*)\.(gif|jpg|jpeg|png|swf|mp4)$ [NC]
RewriteRule ^(.*)$ index.php?s=/$1 [QSA,PT,L]
</IfModule>