How to Mask Extension in URL

后端 未结 4 1636
被撕碎了的回忆
被撕碎了的回忆 2021-01-15 13:35

Is there a way to mask the URL extensions for pages on my website with PHP? Example: http://home/subfolder instead of http://home.subfolder.php

4条回答
  •  南笙
    南笙 (楼主)
    2021-01-15 14:19

    Place the following in the .htaccess file in the root of your website

    
       Options +FollowSymLinks
       Options +Indexes
       RewriteEngine On
       RewriteCond %{SCRIPT_FILENAME} !-d
       RewriteRule ^([^\.]+)$ $1.php [NC,L]
    
    

提交回复
热议问题