Remove php extension from url

前端 未结 2 1360
陌清茗
陌清茗 2021-01-27 23:39

I have url example.com/lt.php/example and want remove .php that will be example.com/lt/example
I try with htacces, but I think that\'s impossible

2条回答
  •  不要未来只要你来
    2021-01-28 00:11

    This might work:

     RewriteRule ^(.+)\.php/(.+)$ $1/$2
    

    The first backreference would capture lt from lt.php and the second backreference would have example and php would be added to it.

提交回复
热议问题