nginx配置后只有根目錄首頁index.php能訪問,其他頁面404


只有首頁面根目錄可以訪問,其他頁面地址都是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;  
	}
				
}

版權聲明:本文為博主原創文章,未經博主允許不得轉載。

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM