Options +FollowSymLinks //这一步有的服务器可能不需要
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond $1 !^(index\.php|Public|robots\.txt) //这个地方是关键点:设置js css image等存放静态文件的目录不需要重写规则
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>
thinkphp url重写 .htaccess文件配置
最新推荐文章于 2024-01-16 15:47:07 发布