coupon-admin/public/.htaccess

11 lines
347 B
ApacheConf
Raw Permalink Normal View History

2021-12-07 10:14:38 +00:00
<IfModule mod_rewrite.c>
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]
2022-01-27 03:45:24 +00:00
2021-12-20 02:14:32 +00:00
SetEnvIf Authorization .+ HTTP_AUTHORIZATION=$0
2021-11-24 06:41:24 +00:00
</IfModule>