我只想知道我在.htaccess文件中用于301重定向的代码。
我的旧网址为Old Link,我想将其重定向到New Link。
我在app / .htaccess和app / webroot / .htaccess中都试过这个代码
Redirect 301 /training/certified-ethical-hacker-v9-course /ec-council/certified-ethical-hacker-v9-course
答案 0 :(得分:2)
RedirectMatch 301 ^/training/certified-ethical-hacker-v9-course /ec-council/certified-ethical-hacker-v9-course
这应该会重定向您的网页。
搜索引擎是不同的东西。 Google已在您的旧链接上编制索引,并在搜索引擎上搜索时显示您的旧链接。要从Google WebMaster Tool中删除Google Index中的旧链接,并应添加410 Gone标头,以便在Google浏览器抓取时会注意到索引页已经消失。