我已经挣扎了一段时间。
我有一堆从本地服务器上取下的WordPress网站,每个网站都源自它的子文件夹,例如:本地主机/例子。所有图像路径都被破坏,指向localhost / example而不是example.com
我需要更正从localhost / example到example.com的所有页面上图像路径。文件在那里,路径错误。
它也是一个WordPress网站,它拥有自己的.htaccess重定向代码(永久链接),因此最好不要与代码冲突。
标准WordPress .htaccess,添加到:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
我尝试了很多代码变体,似乎无法正确使用。
非常感谢!