不幸的是,我在根文件夹中安装了 wordpress,并且由于我没有设法将安装移动到子文件夹,因此我尝试设置不同的目录索引,但我根本无法访问 index.php现在,site.php 中有一个指向它的链接。当我尝试链接 site.xx/index.php 我只是被发送到 site.xx/
DirectoryIndex site.php
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^site\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /site.php [L]
</IfModule>
# END WordPress