.htaccess文件无法重定向

时间:2013-12-16 10:36:24

标签: html .htaccess

我的网站有很多页面。

当我在网上搜索我的域名,其他页面

career.html contactus.html

也会显示在结果中(因为它们已被抓取)。

假设我有一个career.html页面,当我在搜索结果中点击这个

时 我的职业生涯页面

我想让用户在我的索引页面重定向。

为此,我有一个.htaccess文件。它有以下代码

#htaccess 
Redirect ^careers.html http://www.mydomainname.com/

这是我在线阅读的内容,将用户带到我的主页。但这不适合我。

将用户重定向到主页还需要做些什么。 感谢。

2 个答案:

答案 0 :(得分:2)

尝试:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^careers.html$ /index.php [L]
</IfModule>

答案 1 :(得分:0)

您正在使用不接受正则表达式的Redirect指令。您可以使用它看看:

Redirect /careers.html /

否则您可以将RedirectMatch与正则表达式支持一起使用:

RedirectMatch "/careers\.html$ /