Hide file extension (.php) in .htaccess file

后端 未结 3 1634
旧巷少年郎
旧巷少年郎 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

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

    In your links, don't use extensions.

提交回复
热议问题