Remove .html from URLs with a redirect

前端 未结 8 1624
一向
一向 2020-12-29 14:32

We have a website, unfortunately all the URLs have the .html suffix, its a Magento installation, Magento allows you to change this on the CMS, but again, unfort

8条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-29 14:59

    This will rewrite the url like so http://example.com/page.html -> http://example.com/page

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

提交回复
热议问题