文章内容
把Wordpress设置成固定链接更容易被百度、google收录。
第一步
仪表盘——>设置——>固定链接,选择:自定义结构。填入如下内容并保存:
1 | /%postname%/%post_id%/.html |
第二步
修改Nginx配置文件。命令:
1 | vim /etc/nginx/nginx .conf |
在server{}内加入下面这段:
1 2 3 4 | location / { try_files $uri $uri/ /index.php?$args; } rewrite /wp-admin$ $scheme://$host$uri/ permanent; |
重载nginx配置文件:
1 | nginx -s reload |
完成,此时链接可以正常访问了。