开始做seo的优化,当然牵扯到固定链接,wordpress提供多种类型的链接形式:
1
2
3
4
5
6
7
/%year%/%monthnum%/%day%/%postname%/
/%year%/%monthnum%/%postname%/
/%year%/%monthnum%/%day%/%postname%.html
/%year%/%monthnum%/%postname%.html
/%category%/%postname%.html
/%post_id%.html
/%postname%/
我选择了/%postname%伪静态,虽然现在貌似没什么差别了,但还是该下吧。下面就出现了修改固定链接后,访问文章会出现404错误。
wordpress官方给出了新的开启固定链接的方法,非常简单的。将下列代码粘贴到nginx的conf配置文件里。
1
2
3
4
location/{
try_files$uri$uri//index.php?$args;
}
rewrite/wp-admin$$scheme://$host$uri/
permanent;
接着重启nginx就可以正常访问了!!!
原文地址:http://wanshicheng.org/nginx%e9%85%8d%e7%bd%aerestful%e9%a3%8e%e6%a0%bcurl/
以上就介绍了nginx配置restful风格url,包括了方面的内容,希望对php教程有兴趣的朋友有所帮助。