htaccess重定向到主页中的唯一单词

时间:2014-11-24 11:41:10

标签: .htaccess redirect

我需要重定向地址栏中包含“论坛”的所有网址!!

赞:http://www.sportsinjuryclinic.net/blog/forums/http://www.sportsinjuryclinic.net任何人都可以帮我进行重定向吗?

由于

2 个答案:

答案 0 :(得分:0)

您需要使用Mod_rewrite和正则表达式来检查"论坛"串。以下是您正在寻找的内容的示例。 mod_rewrite rule: if URL contains a certain string

答案 1 :(得分:0)

规则1:

如果/blog/是目录,请将此规则放在/blog/.htaccess

RewriteEngine On
RewriteBase /blog/

RewriteRule ^forums(/.*)?$ / [L,NC,R=302]

规则2:

用于处理/forums/ place this rule in DocuementRoot / .htaccess`:

RewriteEngine On

RewriteRule ^forums(/.*)?$ / [L,NC,R=302]

验证一切正常后,将R=302替换为R=301。在测试mod_rewrite规则时,请避免使用R=301(永久重定向)。