我喜欢用WordPress建站,但是每个网站我都会写3个以上的二级目录,为什么了,因为WordPress数据量过大会导致数据库很大很卡,所以这种做法可以减轻数据库的负荷。我一般每个目录的文章达到15万篇就不会再更新了,3个目录加起来大约50万篇左右;二级目录的做法可以递增网站的权重,对网站没有任何影响,但是很多朋友不会写伪静态,下面的代码复制到你的网站即可;
我使用的环境是:linux+CentOS7预装宝塔面板+Nginx 1.15.10+MySQL 5.5.62
location /aa/ {
try_files $uri $uri/ /aa/index.php?$args;
}
location /ab/ {
try_files $uri $uri/ /ab/index.php?$args;
}
location /ac/ {
try_files $uri $uri/ /ac/index.php?$args;
}
location /
{
try_files $uri $uri/ /index.php?$args;
}
rewrite /wp-admin$ $scheme://$host$uri/ permanent;
上面是二个目录,其中aa 、 ab 、ac就二级目录,替换成你的目录名称即可;文章来源:https://www.toymoban.com/news/detail-623471.html
比如你还想增加一个;就在复制一段:文章来源地址https://www.toymoban.com/news/detail-623471.html
location /ad/ {
try_files $uri $uri/ /ad/index.php?$args;
}
到了这里,关于WordPress做权重站:二级目录伪静态写法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!