How to remove .html from URL?

前端 未结 12 1700
轻奢々
轻奢々 2020-11-22 03:02

How to remove .html from the URL of a static page?

Also, I need to redirect any url with .html to the one without it. (i.e. www.exam

12条回答
  •  春和景丽
    2020-11-22 03:29

    To remove the .html extension from your URLs, you can use the following code in root/htaccess :

    #mode_rerwrite start here
    
    RewriteEngine On
    
    # does not apply to existing directores, meaning that if the folder exists on server then don't change anything and don't run the rule.
    
    RewriteCond %{REQUEST_FILENAME} !-d
    
    #Check for file in directory with .html extension 
    
    RewriteCond %{REQUEST_FILENAME}\.html !-f
    
    #Here we actually show the page that has .html extension
    
    RewriteRule ^(.*)$ $1.html [NC,L]
    

    Thanks

提交回复
热议问题