wordpress 移動到子目錄,nginx 如何配置
PHPz
PHPz 2017-05-16 17:09:56
0
1
962

我有個wordpress 站點,是用 lnmp環境建構的。以前wordpress部署在根目錄,直接用網域 www.xxxxx.com 能夠存取。 先我想把這個wordpress移到子目錄中去,例如移動到根目錄的mse_cn 資料夾下,然後訪問透過www.xxxxx.com/mse_cn 首先我把程式碼都移到了mse_cn 資料夾下,然後修改了nginx的配置:

server {
    listen       80;
    server_name  www.xxxx.com;

    #charset koi8-r;
    #access_log  /var/log/nginx/log/host.access.log  main;

location ^~ /mse_cn {
    root /usr/share/nginx/html;
    index index.php index.html index.htm;
    try_files $uri $uri/ /mse_cn/index.php;

    location ~ \.php {
        fastcgi_split_path_info ^(.*\.php)(.*)$;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_param PATH_INFO $fastcgi_path_info;
        fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
        fastcgi_pass 127.0.0.1:9000;
    }
}
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }

    # proxy the PHP scripts to Apache listening on 127.0.0.1:80
    #
    #location ~ \.php$ {
    #    proxy_pass   http://127.0.0.1;
    #}

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    location ~ /\.ht {
        deny  all;
    }
}

重新加載nginx配置文件,然後我訪問 www.xxxxx.com/mse_cn 報404錯誤,而且頁面顯示得很奇怪,請求高手幫助! ! !

#
PHPz
PHPz

学习是最好的投资!

全部回覆(1)
阿神

location ^~ /mse_cn {

root /usr/share/nginx/html;

是什麼鬼? lnmp預設不應該是在/home/wwwroot這個目錄中麼?
www.xxxxx.com/mse_cn 要透過這種形式訪問,只需要把wp移動到之前xxxxx.com的mse_cn目錄中就可以了,nginx原有vhost.conf不用做任何修改

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板