我正在尝试使用.htaccess文件中的以下行重定向URL:
redirect 301 /old_file_path /new_file_path
重定向工作正常,但我获得的URL格式不同:
/new_file_path/?/old_file_path
我该如何解决?
答案 0 :(得分:0)
您应重定向到完整的新路径:
redirect 301 /old_file_path https://example.com/new_file_path
答案 1 :(得分:0)
请按照以下示例操作:
Redirect 301 /oldpage.html http://www.yoursite.com/newpage.html
Redirect 301 /oldpage2.html http://www.yoursite.com/folder/
或共享完整的.htaccess文件,以便我们更好地查看。
确保已打开mod_rewrite apachi模块。
我在代码末尾进行了测试,并且工作正常。
RewriteEngine on
Redirect 302 /master-trainer https://www.keleven.com/master_trainer_course
希望对您有帮助。