我想将所有关系到图像的链接(例如“/images/filename.ext”)重定向到类似“http://otherdomain.com/images/filename.ext”的内容,以便关系图像地址实际上是在寻找其他域上的图像
我试过了:
RewriteEngine On
RewriteRule ^images/(.*)$ http://otherdomain.com/images/$1 [NC, P]
和
RedirectPermanent /images http://otherdomain.com/images
但无济于事。自从我写了htaccess之后已经有很长一段时间了,开始时并不是很好;)所以有点不知所措。
我正在为朋友重写一些代码,如果他可以复制并粘贴完成的HTML而不用担心需要更改的图像链接等,那将会很好。
答案 0 :(得分:0)
我在这方面的知识也非常有限,但我在这里看了一些有用的例子,他们可以帮助你:
1 RewriteRule (^/image/.*) http://otherdomain.com$1 [P]
也许这会起作用
2 ProxyPass /image http://otherdomain.com/image