nginx如何去掉php后缀名

nginx去掉php后缀名的方法:首先打开相应的代码文件;然后添加代码语句为“location / {try_files $uri $uri/ $uri.php?$args;}”即可。

推荐:《PHP视频教程》

nginx rewrite 隐藏.php后缀

我想实现http://xxx.com/post/abc.php隐藏后缀的效果,即:http://xxx.com/post/abc,网上搜了一大堆都只是隐藏index.php重定向到入口文件,这个谁不会啊,但这不是我想要的。然后有的说nginx不行,只能用apache,然而我只轻轻的改了改,一切就是那么的如丝搬顺滑,正是我要的效果!

其实很简单,一行代码的事情

location / {
    try_files $uri $uri/ $uri.php?$args;
}

现在下面两组url的访问效果是一样的

before:
http://abc.com/login.php
http://abc.com/register.php
http://abc.com/blog/post.php
http://abc.com/xxx/xxx/anything.php
after:
http://abc.com/login
http://abc.com/register
http://abc.com/blog/post
http://abc.com/xxx/xxx/anything

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » nginx如何去掉php后缀名