我刚刚在 nginx 上安装了 virtualmin(我想在 nginx 上安装 ISPconfig,但我没有成功)。操作系统是 Centos 6.4。由于 DNS 没有传播,我想通过 Virtualmin->Services->Preview Website 预览我创建的网站。首先它起作用了,但是在我在 /etc/nginx/nginx.conf 文件中添加了以下几行之后,它就不再起作用了。
fastcgi_hide_header X-Powered-By;
# enforce NO www
if ($host ~* ^www\.(.*))
{
set $host_without_www $1;
rewrite ^/(.*)$ $scheme://$host_without_www/$1 permanent;
}
# unless the request is for a valid file, send to bootstrap
if (!-e $request_filename)
{
rewrite ^(.+)$ /index.php?q=$1 last;
}
上面的代码是在 wordpress 网站上制作工作永久链接所需要的。怎么了?