ThinkPHP5解决url重写的问题

ThinkPHP5解决url重写的问题

  1. 把Thinkphp入口文件的.htaccess文件里面的内容改成如下就行了
<IfModule mod_rewrite.c>
 Options +FollowSymlinks -Multiviews
 RewriteEngine On
 RewriteCond %{REQUEST_FILENAME} !-d
 RewriteCond %{REQUEST_FILENAME} !-f
 RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
</IfModule>

猜你喜欢

转载自blog.csdn.net/qq_42242440/article/details/83892832