对于Nginx服务器,以下是一个可供参考的配置 location / { if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=/$1 last; break; } } 如果你的应用安装在二级目录,Nginx的伪静态方法设置如下,其中youdomain的英文所在的目录名称。 location /youdomain/ { if (!-e $request_filename){ rewrite ^/youdomain/(.*)$ /youdomain/index.php?s=/$1 last; } } 然后重启Nginx
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容