Nginx配置Restful风格url
程序员文章站
2022-04-26 17:57:52
...
开始做seo的优化,当然牵扯到固定链接,wordpress提供多种类型的链接形式:
1 234567 |
/%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教程有兴趣的朋友有所帮助。