配置yaf框架的时候,发现得配置一个虚拟域名。
于是在/etc/hosts
增加了一个本地域名127.0.0.1 www.abc.com
;
在nginx/config/vhost
目录下增加一个虚拟主机文件'www.abc.com`;
server
{
listen 80;
#listen [::]:80;
server_name www.abc.com;
index index.html index.htm index.php default.html default.htm default.php;
root /home/wwwroor/www.abc.com/public;
include none.conf;
#error_page 404 /404.html;
location ~ [^/]\.php(/|$)
{
# comment try_files $uri =404; to enable pathinfo
try_files $uri =404;
fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_index index.php;
include fastcgi.conf;
#include pathinfo.conf;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location ~ .*\.(js|css)?$
{
expires 12h;
}
access_log off;
}
但是每次访问www.abc.com的时候,访问的都是wwwroot
这个web根目录。
怎么让它进入/home/wwwroor/www.abc.com/public
这个目录啊?
迷茫2017-04-17 13:26:57
請確認你的設定檔 www.abc.com
是否已經成功加載,內容是否正確。判斷的方法很簡單,在這個設定檔中輸入一個錯誤的內容, 然後執行 nginx -t
。
因為從題主的描述可以看出, www.abc.com
這個檔案應該需要被 nginx 的主設定檔所引用的(include
),並且應該是透過 wildcard 方式載入。這就有可能出現沒有成功載入情況。
請觀察輸出,例如:
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
代表載入了設定檔 /etc/nginx/nginx.conf
,並且沒有錯誤。