时间:2021-07-01 10:21:17 帮助过:3人阅读
1、打开配置文件:/usr/local/nginx-1.8.0/conf/nginx.conf
这里 root就是代码指向的目录
server_name就是域名
location/ 表示匹配所有url都执行匹配后操作,这里下面做了一个rewrite:
if (!-e $request_filename){
rewrite ^/(.*)$ /index.php/$1 last;
}
这个rewrite就是表示匹配到符合这里正则的url就自动添加上index.php,起到了帮我们的url自动补上index.php的作用,缩短了我们的url访问长度
相关推荐:
Nginx和php安装及配置一之编译安装nginx-1.8.0
Nginx和php安装及配置二之安装和配置php-fpm
以上就是Nginx和php安装及配置三之nginx的配置文件的详细内容,更多请关注Gxl网其它相关文章!