时间:2021-07-01 10:21:17 帮助过:26人阅读
location /subdir/ {
if (!-e $request_filename){
rewrite ^/subdir/(.*)$ /subdir/index.php?s=$1 last;
}
}
location ~ /subdir/\w+ {
if (!-e $request_filename)
{
rewrite ^/(\w+)/(.*)$ /$1/index.php/$2;
}
}
ps: 在Nginx低版本中,是不支持PATHINFO的,但是可以通过在Nginx.conf中配置转发规则实现:在nginx配置文件中添加
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1last;
break;
}
}
版权声明:本文为博主原创文章,未经博主允许不得转载。
以上就介绍了让nginx支持thinkmcf或thinkphp rewrite模式,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。