Heim >Backend-Entwicklung >PHP-Tutorial >Nginx配置Restful风格url

Nginx配置Restful风格url

WBOY
WBOYOriginal
2016-07-29 09:00:401759Durchsuche

开始做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教程有兴趣的朋友有所帮助。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn