Removing .php file extension with .htaccess file

后端 未结 5 1356
误落风尘
误落风尘 2020-12-10 16:28

I want www.example.com/about.php to just be www.example.com/about

I created an .htaccess file and placed it in the root of my server. I am using linux shared hosting

5条回答
  •  情歌与酒
    2020-12-10 16:46

    Your rewrite rule isn't correct, it's the wrong way round. Try this instead:

    RewriteRule ^(.*).php$ /$1 [L,R=301]
    

提交回复
热议问题