域名带与不带www的,竟然有差别
以前访问 www.**.com 是自动跳到**.com的。现在www竟然提示404 了。
但是我地CONF就一直没动过。
求解答啊
index index.html index.htm index.php default.html default.htm default.php;
root/home/wwwroot/blog;
include wordpress.conf;
location ~ .*\.(php|php5)?$
{
try_files $uri =404;
fastcgi_passunix:/tmp/php-cgi.sock;
fastcgi_index index.php;
include fcgi.conf;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location ~ .*\.(js|css)?$
{
expires 30d;
}
access_log /dev/null;
} 发完整配置文件
页:
[1]