我在xampp服务器上运行一个代码点火器项目,它与默认控制器配合良好,但当我尝试访问默认控制器以外的控制器时,它会说禁止访问!您没有访问请求对象的权限。它要么被读取保护,要么不可被服务器读取。
我已将config.php
文件更改为:
$config['base_url'] = 'http://localhost/passion';
$config['index_page'] = '';
&这是我的.htaccess文件,看起来像:
RewriteEngine On
RewriteBase /http://localhost/passion/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
谢谢。
确保.htaccess
应在文件夹passion
中
$config['base_url'] = 'http://localhost/passion/';
$config['index_page'] = '';
.htaccess
文件应类似于:
RewriteEngine On
DirectoryIndex index.php
RewriteCond $1 !^(index.php|resources|robots.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]