以实例说明nginx中alias与root用法的区别,有需要的朋友参考下。
1. location ~ ^/awstats/ {
root /home/awstats/;
访问:http://test.com/awstats/ 实际访问的是/home/awstats/awstats/
2.location ~ ^/awstats/ {
alias /home/
访问:http://test.com/awstats/ 实际访问的是/home/
nginx中alias无法解析PHP的解决办法,有需要的朋友可以参考下。
配置文件(注意看下面的中文注释):
server {
listen 80;
server_name xxxx.com.cn;
error_log /tmp/eror.log;
set $www_root /home/web/yqbb/bgskk;
location / {
root $www_root;
index index.html index.php;
}
location /feedback {
index index.php;
alias /home/web/yqbb/bgskk/app/htdocs;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
location ~ ^/feedback/.+\.php$ {
root /home/web/yqbb/bgskk/app/htdocs;
rewrite /feedback/(.*\.php?) /$1 break;
include fastcgi.conf;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /home/web/yqbb/bgskk/app/htdocs/$fastcgi_script_name;
}
location ~ .*\.(php|php5)?$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi.conf;
}
}
server
{
listen 80; #端口号
server_name www.; #域名
index index.html index.htm index.php index.shtml; #默认首页
root /var/www/html; #网站根目录
charset gbk; #默认编码
location /public/ #设定要重写的目录名
{
alias /var/www/public/; #重定向目的目录。
#例:如果用户访问http://www./public/test.html 不会访问/var/www/html/public/test.html,而访问的是/var/www/public/test.html,虽然这个文件并没有在域名目录下
}
#做完上面的设置后,我们发现访问PHP文件http://www./public/test.php时,还是去访问了/var/www/html/public/test.php,也就是说访问php文件没有起到重定向的作用,所以我们还要配置如下这段
#start
location ~ ^/public/.+\.php$
{
root /var/www/html/web/news/public;
rewrite /public/(.*\.php?) /$1 break;
include fastcgi.conf;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
}
#end
location ~ .*\.(php|php5)?$
{
#fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
#include fcgi.conf;
include fastcgi.conf;
rewrite ^/([a-zA-Z]+)\/([a-zA-Z]+)$ /$2.shtml last;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d; #缓存30天
}
location ~ .*\.(js|css)?$
{
expires 1h; #缓存1个小时
}
access_log /var/log/oschina.log access; #定义日志文件
ssi on;
ssi_silent_errors on;
ssi_types text/shtml;
}
在把网站的主web从apache迁移到nginx上时,遇到了些问题。
1.原来在apache每个二级域名都是用建站点的方式,我打算在nginx里面使用rewrite规则的方式来进行跳转,比如:
{
rewrite ^(.*)life.my.com(.*)$ $1www.my.com/lan28/$2 last;
}
完全没有效果,后来分析,在 location / 里面的rewrite是只能处理hostname之后的内容就是www.my.com/(rewrite),对于hostname是没法进行 rewrite的,那如果要对hostname进行rewrite怎么办呢。目前想到是把rewrite挪到location外面去,不过尝试了下貌似还 是有问题,继续研究中。
2.原来www下面有几个alias,比如访问/wwwroot/www/php/ alias 到/wwwroot/php/ 这样,但是在nginx里面alias的话呢htm、图片等静态文件没问题,但是php问题就来了,由于php是通过正则转发到fastcgi的比如:
location /php/
{
alias /wwwroot/php/;
}
location ~ .*\.php?$
{
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fcgi.conf;
}
这种情况下如果http访问/php/*.php文件实际上是由 location ~ .*\.php?$ 处理的,也就是说php文件根本没没有进行alias还是按照/wwwroot/www/php/的路径访问的。
这个问题如何解决呢,我想到了几个方法:
1)使用symbolic link从系统上把/wwwroot/php/映射到/wwwroot/www/php/
2)修改location ~ .*\.php?$ 的正则,将/php/目录排除,然后在写一个location ~ /php/.*\.php?$ 来处理/php/下面的php文件
3)放弃alias使用rewrite的方式来处理。
三个方法第一个属于回避型,虽然能解决问题但是不符合我的要求。第二个么太复杂,能否实现还是未知。最后我选择了第三个方法就是用rewrite来处理。
略微修改:
location ^~ /php/ #这里的关键就是使用“^~”,这样如果是/php/的话就不去匹配下面的php的正则,而全部重定向到php.my.com去,不然的话还是一样的htm正常,php无法访问。
{
rewrite (.*)/php/(.*) http://php.my.com/$2 permanent;
}
location ~ .*\.php?$
{
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fcgi.conf;
}
这里的http://php.my.com 对应的就是/wwwroot/www/php/。