我在.htaccess文件中有一些代码,我想在其中添加301重定向以将某些页面重定向到新位置,但不知何故301重定向无法正常工作
我想添加的301重定向是:
### 301 Redirects ###
Redirect 301 /old_page.html /new_page
Redirect 301 /old_page.html /new_page
Redirect 301 /old_page.html /new_page
Redirect 301 /old_page.html /new_page
我有大约100页要重定向,所以我复制了每页的上述代码。
问题是上面的代码无效,页面没有重定向。我认为该代码与.htaccess文件中的现有代码冲突。
.htaccess中的现有代码是:
<IfModule mod_rewrite.c>
RewriteEngine On
### SSL HTTPS Redirect
RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
### Exrx.net/page will display the contents of Exrx.net/page.html
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}.html -f
RewriteRule ^(.+)$ $1.html [L,QSA]
### 301 from Exrx.net/page.html to Exrx.net/page
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /.*\.html\ HTTP/
RewriteRule ^(.*)\.html$ /$1 [R=301,L]
### -- concrete5 urls start --
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME}/index.html !-f
RewriteCond %{REQUEST_FILENAME}/index.php !-f
RewriteRule . index.php [L]
</IfModule>
### -- concrete5 urls end --
我不是.htaccess的专家,是否有人能指出我的冲突以及为什么我要添加的301重定向不起作用?
答案 0 :(得分:0)
RewriteCond %{HTTP_HOST} ^(www\.domain\.com)|(domain\.com)$ [NC]
RewriteRule ^old_page\.html$ /new_page/ [R=301,L]
将www.domain.com/old_page.html重定向至www.domain.com/new_page /