web 服务域名 www.test.com
nginx配置文件 :
location / {
root /var/html/;index index.php index.html index.htm;
}
location /phpmyadmin/ {
alias /home/phpmyadmin/;
index index.php;
}
对于root 命令,其指定的路径是请求文件的上一层,如 http://www.test.com/index.html,实际请求的文件时 /var/html/index.html ;
对于alias命令, 其指定的路径是对 location 部分的替换,如:http://www.test.com/phpmyadmin/index.php ,实际请求的文件时 /home/phpmyadmin/index.php
-----------------
alias 配置了之后,请求静态文件 html等是没问题的,可是请求 php等文件,则会 404错误,原因是要对 使用了alias 的目录中php文件解析规则进行说明,所以配置phpmyadmin的虚拟目录,完整配置如下:
location /phpmyadmin/ {
alias /home/phpmyadmin/;
index index.php;
}
location ~ /phpmyadmin/.*\.php$ {
# #fastcgi_pass 127.0.0.1:9000;
root /home/;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi.conf;
}
这样的话,就可以顺利执行php页面了。