PHPFastCGI在Nginx的alias下404的解决方案
程序员文章站
2022-04-27 15:55:03
...
在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.
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?) /1 break;
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教程有兴趣的朋友有所帮助。
推荐阅读
-
nginx下的代理服务器80端口被封的解决方案
-
DISCUZ在win2003环境下 Unable to access ./include/common.inc.php in... 的问题终极解决方案_php技巧
-
java web在高并发和分布式下实现订单号生成唯一的解决方案
-
在windows下使用淘宝的nginx插件 nginx_concat_module (附下载地址)
-
在Debian下配置Python+Django+Nginx+uWSGI+MySQL的教程
-
PHP开发框架kohana3.3.1在nginx下的伪静态设置例子
-
Symfony2在Nginx下的配置方法图文教程
-
国外著名论坛程序IPB(Invision Power Board)在nginx下的配置示例
-
在Nginx服务器下配置StartSSL和SSL的教程
-
nginx 0.8.54/1.0.0 在cygwin环境下的编译(包括 nginx_mod_h264_streaming-2.2.7)