ThinkPHP5.0.10 - URL重写问题

ThinkPHP5.0.10 - URL重写问题_第1张图片
图片镇楼

至于为什么重写。。还是因为懒

官方给的apache的.htaccess PHP版本超过5.5以上会出现这个错误
这是官方给的.htaccess


Options +FollowSymlinks -Multiviews
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]


RewriteRule ^(.)$ index.php/$1 [QSA,PT,L]
修改成
RewriteRule ^(.
)$ index.php [L,E=PATH_INFO:$1]

修改过的.htaccess

Options +FollowSymlinks -Multiviews
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]

--End--

我是诗无尽头°十八岁的少年,如果我的文章对您有用的话麻烦点个赞
诗无尽头° © 爱源客博客

你可能感兴趣的:(ThinkPHP5.0.10 - URL重写问题)