我在根目录中安装了 wordpress ...
我在根文件夹中有两个名为 test1 和营销的子文件夹。
现在,当我尝试在营销文件夹中打开pdf文件时,我的wordpress网站会将我重定向到 404错误。
例如,我正在尝试打开以下链接
http://example.com/marketing/test.pdf
它将我重定向到http://example.com/404
现在针对第二种情况,我也在 test1 中安装了wordpress。
但是对于 test1 wordpress的某些链接,它还会将我重定向到404页面。
例如,我正在尝试打开以下链接
http://example.com/test1/portfolio/interior-site
它将我重定向到http://example.com/404
我的根目录的.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
我的 test1 文件夹的.htaccess位于
之下# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /test1/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /test1/index.php [L]
</IfModule>
# END WordPress