我的服务器的根文件夹中有一个Wordpress网站。在这个根目录中,我插入了一些index.html文件,当我访问我的域时,我想首先加载它。
在index.html上我有选择语言的选项,在访问者选择语言后,他应该被重定向到index.php上的Wordpress主页。
index.html正在运行并且首先加载,但是当有人选择语言时,它会返回index.html而不是index.php。这让我很头疼。当我将链接设置为index.php
时,我不知道它为什么总是返回index.html这是我的.htaccess文件:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /zeder/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /zeder/index.php [L]
DirectoryIndex index.html
</IfModule>
# END WordPress
任何人都知道可能出现什么问题以及如何避免这种情况?