TaoLer/public/.htaccess

9 lines
216 B
ApacheConf
Raw Permalink 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-03-21 12:30:28 +08:00
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
2020-01-01 13:17:19 +08:00
</IfModule>