我将我们的旧博客迁移到主根目录中的同一服务器。出于某种原因,即使在/uploads/folder中,也不会再加载一些图像。当以URL的形式访问它们时,我得到了404,但我可以直接从FTP(和工作)下载它们。
有人知道问题出在哪里吗?
我在想我的。htaccess文件,但我不确定这是问题所在:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
Options +FollowSymlinks
RewriteEngine on
rewritecond %{http_host} ^dreamix-studio.com [nc]
rewriterule ^(.*)$ http://www.dreamix-studio.com/$1 [r=301,nc]
# 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