我已将所有资产转换为新服务器;但是,当有人打开旧电子邮件时,之前的图像路径链接就会中断。
我正在尝试使用htaccess将请求重定向到旧服务器,但我无法这样做。
我在旧服务器上尝试使用htaccess
<script>
$(document).ready(function() {
$("#textbox1").bind("input",function(){
$("#textbox2").focus();
});
});
</script>
答案 0 :(得分:1)
在旧服务器中,添加以下重定向:
RedirectMatch 301 ^/email/images/(.*)/?$ http://newserver/images/$1
答案 1 :(得分:1)
在尝试使用重写引擎之前,最好先打开重写引擎。检查模块是否已安装在服务器上也可能是谨慎的:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^/email/images/(.*)$ http://pathtonewserver/images/$1 [L,R=301]
</IfModule>