Hide file extension (.php) in .htaccess file

后端 未结 3 1636
旧巷少年郎
旧巷少年郎 2021-01-16 23:03

I know there are many topics. I tried them many times, but it doesn\'t work.

What do I want?

Instead of example.com/en/file.php, users see only

3条回答
  •  栀梦
    栀梦 (楼主)
    2021-01-16 23:42

    Fixed by adding one line:

    RewriteEngine on
    **Options -Multiviews**
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.+)$      $1.php     [L,QSA]
    

提交回复
热议问题