0

有没有办法让第一个 URL 重定向到第二个 URL?

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

有没有办法强制 .html 扩展名重定向到 URL 的非 html 版本,以免显示为同一页面的重复副本。

我目前的 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]

这可能吗?

4

2 回答 2

0

不完全确定我是否理解这个问题,但是如果您希望以 .html 结尾的任何内容都重定向到没有 .html 的相同 URL,这应该可以解决问题:

RewriteRule ^/(.*)\.html$ /$1 [R=301,L]
于 2012-07-02T21:07:24.777 回答
0

这就是您如何仅将 html 重定向到非 html 的方法。

RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ (/[^\ ]+)\.html\  [NC]
RewriteRule ^ %1 [L,R=301]
于 2016-11-11T13:12:06.897 回答