0

我有一个带有论坛的网站,我正在尝试清理重复的内容问题。

我想要做的是 301 将任何带有 mywebsite.com/recent-topics/category-title/post-title.html 的 URL 重定向到 mywebsite.com/forum/category-title/post-title.html。

这是一个 Joomla 网站,并且一个 htaccess 文件已经在使用中。我已将此字符串添加到 htaccess 文件的末尾,但它不起作用:

RewriteRule ^/recent-topics/(.*) /forum [R=301,L]

完整的 htaccess 文件:

RewriteEngine On

RewriteCond %{QUERY_STRING} base64_encode.*\(.*\) [OR]
RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR]
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
RewriteRule ^(.*)$ index.php [F,L]

##
# Uncomment following line if your webserver's URL
# is not directly related to physical file paths.
# Update Your Joomla! Directory (just / for root).
##

#RewriteBase /

## Begin - Joomla! core SEF Section.
#
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/index.php
RewriteCond %{REQUEST_URI} (/component/) [OR]
RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|/[^.]*)$  [NC]
RewriteRule (.*) index.php
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
#
## End - Joomla! core SEF Section.

RewriteRule ^/recent-topics/(.*) /forum [R=301,L]

任何人都可以就我做错了什么提供任何建议吗?

4

1 回答 1

0

您需要在RewriteEngine On. 重定向需要在任何类型的路由发生之前发生。Joomla 规则执行路由,因此您的重定向规则/forum永远不会被应用。

于 2012-10-27T14:01:24.393 回答