Hide file extension (.php) in .htaccess file

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

    Perhaps something like this. Modify as you see fit for more specific pattern matching.

    RewriteRule ^(?:(.*)/)?(.*)$ $2.php?lang=$1
    

    Rewrites:

    /en/fun => /fun.php?lang=en

    /ru/fun => /fun.php?lang=ru

    /fun => /fun.php?lang=

提交回复
热议问题