Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这里的任何人都知道如何在.htaccess 上执行此操作?我需要替换“[]”内的 URL 部分。
这是 URL:[http://example.com/site/second/files/] 2012/08/Image.jpg 新 URL:[http://example-two.com/media1/] 2012/08 /图像.jpg
提前致谢!
RewriteRule ^site/second/files/(.*)$ http://example-two.com/media1/$1 [L]
你也可以使用 mod_alias:
Redirect 301 /site/second/files http://example-two.com/media1/