如何配置301重定向

时间:2016-05-05 20:06:10

标签: .htaccess url-redirection

如果我想将旧商店域http://shop.example.net/product-name.html重定向到http://example.net/product-category/product-new-name

我应该做什么?

已经在做

@Component(modules = CallAlarmModule.class)
public interface CallAlarmComponent {
    void injectTimerCallback(IMinutesCounter.ITimerCallback service);
}

但它不起作用。它显示http://example.net/Hoodies_c_70.html

1 个答案:

答案 0 :(得分:0)

我有一个解决方案。问题发生在.htaccess中的这一行bcoz:

Redirect 301 / http://example.com/store

所以我删除了htaccess中的那个并且没有改变其他重定向。然后添加一个带代码

的index.php文件
header("Location: http://example.com/store/", true, 301);

现在一切都很好。