每换一次环境就要折腾一次伪静态,之前由win服务器换到Apache的时候要倒腾.htaccess,这不换成Nginx又要折腾conf的配置文件。这边的环境下用遍了我几乎度娘了能找得到的所有的答案,要不就是配置根本加载不了,要不就是正常加载后后台进不去了。好吧,只能跳墙求谷哥了,在stackoverflow社区找着了一个配置文件,试用了下完美无错,此规则圆满解决WordPress伪静态时用类似www.xend.live/wp-admin网址无法访问后台的问题,当然也就用不着再写入WP官方的rewrite /wp-admin$ $scheme://$host$uri/ permanent;这句规则了。
现在好好地理一下配置流程,源文已翻译过来给大家分享。
本地环境:
CentOS7 64bit
LNMP(Nginx1.8.1、Php7.0、Mysql)
WordPress4
好吧,开始了!
一、设置WordPress后台
在WordPress后台-设置-固定链接-自定义结构,输入下面的代码,最后保存更改即可。
/%category%/%post_id%.html
二、配置Nginx的规则
完整的xend.live.conf文档如下:
server{
server_name www.xend.live;
listen 80;
#on server block
##necessary if using a multi-site plugin
server_name_in_redirect off;
##necessary if running Nginx behind a reverse-proxy
port_in_redirect off;
access_log /var/log/nginx/access.log;
location / {
root /var/www/xend.live;
index index.html index.htm index.php;
rewrite ^.*/files/(.*)$ /wp-includes/ms-files.php?file=$1 last;
if (!-e $request_filename) {
rewrite ^.+/?(/wp-.*) $1 last;
rewrite ^.+/?(/.*\.php)$ $1 last;
rewrite ^(.+)$ /index.php?q=$1 last;
}
}
#注:下边的规则/.(html这个地方你要依据自己的文章页的方式来修改,如果你的文章地址页是类似本文的%post_id%.html的方式的话那下边的所有的html都要去掉,要不然文章内页打开会显示404错误的
location ~* ^.+\.(html|jpg|jpeg|gif|png|ico|css|zip|tgz|gz|rar|bz2|doc|xls|exe|pdf|ppt|txt|tar|mid|midi|wav|bmp|rtf|js)$
{
root /var/www/xend.live;
rewrite ^/.*(/wp-.*/.*\.(html|jpg|jpeg|gif|png|ico|css|zip|tgz|gz|rar|bz2|doc|xls|exe|pdf|ppt|txt|tar|mid|midi|wav|bmp|rtf|js))$ $1 last;
rewrite ^.*/files/(.*(html|jpg|jpeg|gif|png|ico|css|zip|tgz|gz|rar|bz2|doc|xls|exe|pdf|ppt|txt|tar|mid|midi|wav|bmp|rtf|js))$ /wp-includes/ms-files.php?file=$1 last;
expires 30d;
break;
}
location ~ wp\-.*\.php|wp\-admin|\.php$ {
include /etc/nginx/fastcgi_params;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /var/www/xend.live$fastcgi_script_name;
}
}
恭喜,成功配置规则,接下来便是重加载并重启nginx服务了。
# systemctl reload nginx.service
# systemctl restart nginx.service
三、 与WordPress 伪静态相关的SEO优化
1、去掉 WordPress 分类链接category插件wp-no-category-base
设置了固定链接的 WordPress 博客的分类链接里会有“category”,如博客吧的分类链接http://www.xend.live/category/frontend
,很多人不喜欢它,所以想尽办法要将它去掉,大部分人使用.htaccess实现301转向让它不显示,但相比跳转,博客吧感觉用插件实现会更好,下面介绍款去掉WP分类链接category的插件wp-no-category-base。 wp-no-category-base插件介绍: 这是款仅有几K,对网站的负担几乎可以忽略不计,插件激活即可,无需做任何设置,支持多级分类,使用该插件后不用担心旧地址问题,旧的带category的网址会自动跳转到新的不带category的网址上面来。
2、给 WordPress 博客分类目录url后添加“/”斜杠插件
wp分类目录url是http://www.xend.live/frontend
,这种形式不利于SEO,因为正常的目录url格式应该是http://www.xend.live/fronted/
,即多了个斜杠。出于SEO,可以使用Permalink Trailing Slash Fixer插件。 Permalink Trailing Slash Fixer插件介绍: 通过Permalink Trailing Slash Fixer插件,可以实现给wordpress分类目录url地址末端添加斜杠/
,从而达到SEO的目的。
四、下面是针对上边配置的解释供各位参看,相关WordPress网站的虚拟主机conf初始规则文件与代码片断如下:
译文源:http://blog.delacelle.com/nginx-rewrites-rules-for-wordpress-3-multi-blog-php-fpm/
server{
servername www.xend.live;
listen 80;
#on server block
##necessary if using a multi-site plugin
servernameinredirect off;
##necessary if running Nginx behind a reverse-proxy
portinredirect off;
access_log /var/log/nginx/access.log;
location / {
root /var/www/xend.live/wordpress;
index index.html index.htm index.php;
#上面这些是你自己WordPressp这个网站的配置文件信息,在此行下面加入的一些片断如下:
#如果网络请求的文件存在,立即返回此文件
if (-f $request_filename) {
break;
}
#WordPress缓存插件W3 Total Cache(可选如果你有安装W3这个插件的话)
#W3 Total CACHE BEGIN
set $totalcache_file '';
set $totalcache_uri $request_uri;
if ($request_method = POST) {
set $totalcache_uri '';
}
#绕过任何请求的字符串缓存,使用简短的固定路径和链接
if ($query_string) {
set $totalcache_uri '';
}
if ($http_cookie ~* "comment_author_|wordpress|wp-postpass_" ) {
set $totalcache_uri '';
}
#如果我们没有绕过缓存,详细指定出我们的totalcache文件
if ($totalcache_uri ~ ^(.+)$) {
set $totalcache_file /wp-content/w3tc-$http_host/pgcache/$1/_index.html;
}
#如果他真的不存在的话就仅仅定向到totalcache文件
if (-f $document_root$totalcache_file) {
rewrite ^(.*)$ $totalcache_file break;
}
#W3 Total CACHE END
#所有的其它请求定向到WordPress
if (!-e $request_filename) {
rewrite . /index.php last;
}
}
#图片和静态资源区别对待开始
location ~* ^.+.(jpg|jpeg|gif|css|png|js|ico|xml)$ {
access_log off;
expires 30d;
root /var/www/xend.live/wordpress;
}
#Php等文件的区别对待
location ~ wp\-.*\.php|wp\-admin|\.php$ {
include /etc/nginx/fastcgi_params;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /var/www/xend.live/wordpress$fastcgi_script_name;
}
}
Tag:Nginx, Wordpress, 伪静态
发布时间:2015年08月10日
博客被黑,挪窝简书安家……