如果我想将旧商店域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
答案 0 :(得分:0)
我有一个解决方案。问题发生在.htaccess中的这一行bcoz:
Redirect 301 / http://example.com/store
所以我删除了htaccess中的那个并且没有改变其他重定向。然后添加一个带代码
的index.php文件header("Location: http://example.com/store/", true, 301);
现在一切都很好。