2019-12-02 23:04:43 +08:00
|
|
|
<IfModule mod_rewrite.c>
|
|
|
|
Options +FollowSymlinks -Multiviews
|
|
|
|
RewriteEngine On
|
|
|
|
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
2020-02-13 12:30:18 +08:00
|
|
|
RewriteRule ^(.*)$ index.php [QSA,PT,L]
|
2020-02-18 17:27:24 +08:00
|
|
|
SetEnvIf Authorization .+ HTTP_AUTHORIZATION=$0
|
2019-12-02 23:04:43 +08:00
|
|
|
</IfModule>
|