兼容ThinkPHP三种url模式的nginx rewrite

来源:互联网 发布:东方网络002175股吧 编辑:程序博客网 时间:2024/06/05 07:25

TP有三种url模式,在windows下面使用.htaccess 路径重写,在linux+nginx环境下修改nginx.conf或者对应的nginx配置文件:

location / {     root /var/www;     index index.html index.htm index.php;     if (!-e $request_filename) {         rewrite ^/index.php(.*)$ /index.php?s=$1 last;         rewrite ^(.*)$ /index.php?s=$1 last;         break;     } }


原创粉丝点击