更新apache 下伪静态文件

This commit is contained in:
sugar1569 2019-01-02 10:24:20 +08:00
parent 608494ff3d
commit 3b6b543c16

7
.htaccess Normal file
View File

@ -0,0 +1,7 @@
<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>