配置nginx重写index.php

来源:互联网 发布:知更 杨千嬅试听 编辑:程序博客网 时间:2024/05/22 03:33
server {
        listen       80;
        server_name _;
        index  index.html index.htm index.php;

        # 这里需要改成你网站的真实路径作为根目录

        root   "/www/";


        # 以下配置可以让URL少写个index.php 
        location / {
            if (!-e $request_filename) {
                rewrite  ^(.*)$  /index.php/$1  last;
                # rewrite  ^(.*)$  /index.php?s=$1  last;  #低版本nginx使用此兼容模式来重写实现
                break;
            }
        }
}
0 0
原创粉丝点击