我在主域上有一个Wordpress,它工作正常,但只是在子域上安装了CodeIgniter 3而且我一直在获得额外的CodeIgniter上的403 Forbidden错误。我玩过.htaccess
并没有成功。这是我现在的.htaccess
RewriteEngine On
#RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
答案 0 :(得分:0)
您是否尝试删除应用程序文件夹中的.htaccess?
您可以尝试在您的校长.htaccess
中粘贴此内容RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [L]
只有从网址中删除/index.php/才能使用此htacces