码迷,mamicode.com
首页 > Web开发 > 详细

nginx隐藏入口文件index.php

时间:2018-12-05 20:56:02      阅读:299      评论:0      收藏:0      [点我收藏+]

标签:配置   nginx   nginx配置   com   oca   nbsp   lis   filename   roo   

网站的访问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;
    }

  }
  # ...
}

nginx隐藏入口文件index.php

标签:配置   nginx   nginx配置   com   oca   nbsp   lis   filename   roo   

原文地址:https://www.cnblogs.com/zqifa/p/nginx-rewrite-1.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!