`
ln_ydc
  • 浏览: 266920 次
  • 性别: Icon_minigender_1
  • 来自: 青岛
社区版块
存档分类
最新评论

为nginx下的wordpress设置永久链接

    博客分类:
  • PHP
 
阅读更多

 

转载:http://www.yangdachao.com/archives/17.html

-----------------------------------------------------------------------

为文章设置永久链接形如:http://www.yangdachao.com/archives/8.html

1.修改nginx配置文件

在server下添加如下内容:

location / {
index index.html index.php;
if (-f $request_filename/index.html) {
rewrite (.*) $1/index.html break;
}
if (-f $request_filename/index.php) {
rewrite (.*) $1/index.php;
}
if (!-f $request_filename) {
rewrite (.*) /index.php;
}
}

2.修改wordpress设置

进入wordpress后台控制面板中的设置选项,选中永久链接,

再选中自定义结构,输入 /archives/%post_id%.html

保存即可

 

-----------------------------------------------------------------------

转载:http://www.yangdachao.com/archives/17.html

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics