wordpress更换服务器nginx 配置教程ssl
WordPress的Web服务器从Apache切换到了Nginx,还是会遇到一些问题,我们可以把这篇文章收藏起来,说不定某一天就用的上了
对于WordPress站点来说,固定链接主要是通过根目录下的.htaccess文件来控制,切换服务器后,Nginx的rewrite格式和Apache的不同,需要修改。
先卸载Apache系统,之后安装Nginx系统。
WordPress
在BT面板后台,点“网站”-“设置”-“伪静态”,对于单站点的WordPress来说,原先的.htaccess文件内容如下:
RewriteEngineOn
RewriteBase/
RewriteRule^index\.php$–[L]
RewriteCond%{REQUEST_FILENAME}!-f
RewriteCond%{REQUEST_FILENAME}!-d
RewriteRule./index.php[L]
切换到Nginx系统后,其配置内容如下:
location/{
try_files$uri$uri//index.php?$args;
}
rewrite/wp-admin$$scheme://$host$uri/permanent;
对于子域名方式的多站点的WordPress来说,原先的.htaccess文件内容如下:
RewriteEngineOn
RewriteBase/
RewriteRule^index\.php$–[L]
RewriteRule^wp-admin$wp-admin/[R=301,L]
RewriteCond%{REQUEST_FILENAME}-f[OR]
RewriteCond%{REQUEST_FILENAME}-d
RewriteRule^–[L]
RewriteRule^(wp-(content|admin|includes).*)$1[L]
RewriteRule^(.*\.php)$$1[L]