如何使用htaccess的重定向HTML扩展?(How to redirect html exten

2019-07-30 05:30发布

目前,这两个环节的表现出同样的页面:

http://www.example.com/podcast/episode.html
http://www.example.com/podcast/episode

我想要做的是重定向所有的HTML类型链接到非HTML链接。

我知道这看起来简单的与htaccess的做,但它不是为我工作。

这里是我的htaccess代码至今:

    RewriteEngine On
    RewriteBase /

    #removing trailing slash

    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)/$ $1 [R=301,L]

    #non www to www

    RewriteCond %{HTTP_HOST} !^www\.
    RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]

    #shtml

    AddType text/html .html
    AddHandler server-parsed .html

    #html

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^([^\.]+)$ $1.html [NC,L]

    #index redirect

    RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.html\ HTTP/ 
    RewriteRule ^index\.html$ http://example.com/ [R=301,L]

Answer 1:

RewriteCond %{THE_REQUEST} \.html
RewriteRule ^(.*)\.html$ /$1 [R=301,L]


文章来源: How to redirect html extension using htaccess?