nginx二级域名设置不成功请教
配置文件,域名管理哪里A记录 *。xxx。com泛域名设置好了。服务器系统centos6.5迷你板,lnmp1.2安装nginxserver{
listen 80;
#listen [::]:80;
server_name xxx.xxx.com;
index index.html index.htm index.php default.html default.htm default.php;
root/home/wwwroot/xxx.xxx.com;
include dscNginx.conf;
#error_page 404 /404.html;
location ~ [^/]\.php(/|$)
{
# comment try_files $uri =404; to enable pathinfo
try_files $uri =404;
fastcgi_passunix:/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;
} 不清楚你所说的设置不成功的意思,是无法访问还是怎样?
看配置文件配置文件没错误 设置二级域名后都一直指向首页。。没有指向相关页面,二级域名是商户自己设置 添加的域名指向默认页面可能是配置文件未生效或有错误或nginx上有其他问题
页:
[1]