- 积分
- 2
- 威望
-
- 金钱
-
- 注册时间
- 2012-7-28
- 在线时间
- 小时
- 最后登录
- 1970-1-1
|
服务器架构LNMP,独立VPS,近来想在子目录中装个WP,可一访问总是出现505找不到错误,求大侠指点啊,在网上查了半天,应该也没有什么错误。。配制文件如下:server
{
listen 80;
server_name lacewigsfront.com www.lacewigsfront.com;
index index.html index.htm index.php default.html default.htm default.php;
root /home/wwwroot/sites;
if ($host != 'www.lacewigsfront.com') {
rewrite ^/(.*)$ http://www.lacewigsfront.com/ $1 permanent ;
}
include prestarshop.conf;
error_page 404 = http://www.lacewigsfront.com/ ;
location /blog/ {
root /home/wwwroot/sites/blog;
index index.php index.html;
if ($request_uri ~* ^.*/.*$) {
rewrite ^/(\w*)/(.*)$ /$1/index.php?q=$2 last;
break;
}
}
}
VPS新手,如问题过于简单,请谅解。。 |
|