TaoLer/public/.htaccess

9 lines
217 B
ApacheConf
Raw Normal View History

2020-01-01 13:17:19 +08:00
<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
2020-02-12 17:20:07 +08:00
RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
2020-01-01 13:17:19 +08:00
</IfModule>