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

nginx配置后只有根目录首页index.php能访问,其他页面404

时间:2017-06-10 13:51:50      阅读:3370      评论:0      收藏:0      [点我收藏+]

标签:无效   index   代码   http   logs   使用   php   html   highlight   

只有首页面根目录可以访问,其他页面地址都是404 not found。网上找了半天url重定向,url重写都试了无效,要不就是重定向过多,下图为跳坑历程。

 1 location / {
 2                 #if ($http_host !~ “^www\.nginxtest\.com/index\.php$”) {
 3                 
 4                 #if ( !-f $request_filename ) {
 5                 #    rewrite ^/(.+)$ http://www.nginxtest.com/index.php?$1 last;
 6                 #    rewrite ^/(.+)$ http://www.nginxtest.com/index.php/$1 break;
 7                 #}
 8                 
 9                 #if ($http_host ~* "^(.*)\.nginxtest\.com$") {
10                 #    set $domain $1;
11                 #    rewrite ^(.*) http://www.nginxtest.com/$domain/ break;
12                 #}
13                 
14                 #if (-f $request_filename/index.html){
15                 #    rewrite (.*) $1/index.html break;
16                 #}
17                 #if (-f $request_filename/index.php){
18                 #    rewrite (.*) $1/index.php;
19                 #}
20                 #if (!-f $request_filename){
21                 #    rewrite (.*) /index.php;
22                 #}
            
23 try_files $uri $uri/ /index.php?$query_string; 24 if (!-e $request_filename){ 25 rewrite ^/(.*) /index.php last; 26 } 27 28 }

最后使用这段代码终于正常了,希望也能帮到大家

location / {

	try_files $uri $uri/ /index.php?$query_string;
	if (!-e $request_filename){  
		rewrite ^/(.*) /index.php last;  
	}
				
}

  

 

nginx配置后只有根目录首页index.php能访问,其他页面404

标签:无效   index   代码   http   logs   使用   php   html   highlight   

原文地址:http://www.cnblogs.com/cxscode/p/6978428.html

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