我在搜索引擎中遇到重复内容的问题。
我可以使用这两个网址访问 q2a 网站中的页面!
http://www.domain.com/index.php?qa=1306&qa_1=title
http://www.domain.com/1306/title
我想将第一个重定向到第二个 1 我该怎么做?
我也在这些页面和其他东西中尝试了代码,但它们都不起作用:(
htaccess 用于将 index.php?ms=user 更改为 /user
我目前的 htaccess 是:
DirectoryIndex index.php
<IfModule mod_rewrite.c>
RewriteEngine On
#RewriteBase /
RewriteCond %{REQUEST_URI} ^(.*)//(.*)$
RewriteRule . %1/%2 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^.*$ index.php?qa-rewrite=$0&%{QUERY_STRING} [L]
# Redirect non-www to www:
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
Redirect 301 /math/ http://math.domain.com/
</IfModule>