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.
我有<img src="img/test.png">
<img src="img/test.png">
我想通过.htaccess文件更改图像 src
我希望它改变 <img src="files/image/test.png">
<img src="files/image/test.png">
请建议。
一个简单的重定向应该可以完成这项工作。
Redirect 301 /img/text.png http://example.com/files/image/text.png
它不会更改 HTML 源代码中的值,但这需要的不仅仅是简单的服务器配置指令。
使用 URL 重定向
您的 .htaccess 文件将是
<IfModule mod_rewrite.c> RewriteRule ^img/(.*)$ files/image/$1 </IfModule>