nginx隐藏入口文件index.php
网站的访问url可能是这样
http://www.xxx.com/index.php/home/index/index
这种有点不美观,我们想达到如下效果
http://www.xxx.com/home/index/index
修改一下nginx配置即可:
server {
listen 80;
server_name www.xxx.com;
root "/var/html/wwwroot/xxx";
index index.html index.php;
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
}
# ...
}
如果觉得这文章还算用心,请劳驾点击右下角的推荐,这是对我们这些做开源分享的最大的肯定,谢谢。
作者:zqifa
出处:https://www.cnblogs.com/zqifa/
欢迎访问新博客地址:https://www.l1mn.com/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接。