Hide extension in .htaccess

后端 未结 4 490
刺人心
刺人心 2021-01-15 03:50

Hi All i have a problem that my file have .html extention but i want that when the file open in brownser the extention had hidden.e.g file.html to file. Advance thanks

4条回答
  •  生来不讨喜
    2021-01-15 04:33

    In your .htaccess file use this:

    RewriteEngine on  
    RewriteCond %{REQUEST_FILENAME} !-d  
    RewriteCond %{REQUEST_FILENAME}\.html -f  
    RewriteRule ^(.*)$ $1.html
    

    Now you can use lins like http://www.mysite.com/contact rather than http://www.mysite.com/contact.html.

    Hope this helps!

提交回复
热议问题