首頁 >後端開發 >php教程 >PHPFastCGI在Nginx的alias下404的解決方案

PHPFastCGI在Nginx的alias下404的解決方案

WBOY
WBOY原創
2016-07-29 08:51:081294瀏覽

在Nginx的官方wiki中如下描述
The alias directive cannot be used inside a regex-specified location. If you need to do this you must use a combination of rewrite and root.

在實際使用中alias下面的php返回404,而確html方法如下

location / {
root /opt/www/htdocs/www;
index index.php index.html index.htm;
}

location /bbs/ {
alias /opt/www/htdocs/bbs/;
index index.php index.html index.htm;
}

location ~ ^/bbs/.+.php{  
root /opt/www/htdocs;  
rewrite /bbs/(.*.php?) /
; include conf/fcgi.conf;
fastcgi_pass 127.0.0.1:10080;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /opt/www/htdocs/bbs$fastcgi_script_name;
}

即用root加rewrite替換alias

來源:http://blog.tcisv.cn/index.php/2009/06/phpfastcgi%E5%9C%A8nginx%E7%9A%84alias%E4%B8% 8B404%E7%9A%84%E8%A7%A3%E5%86%B3%E6%96%B9%E6%A1%88/

').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i

').text(i)); }; $numbering.fadeIn(1700); }); });

以上就介紹了PHPFastCGI在Nginx的alias下404的解決方案,包括了方面的內容,希望對PHP教程有興趣的朋友有所幫助。

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn