我在codeigniter中有一个项目,我在使用xampp,我有一个按钮,但是当我重定向到其他视图时出现错误。
禁止访问!您无权访问所请求的对象。
服务器对其进行了读保护或不可读。
如果您认为这是服务器错误,请与网站管理员联系。
错误403本地主机Apache / 2.4.39(Win64)OpenSSL / 1.1.1b PHP / 7.3.4
我的.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]
我的配置
$config['base_url'] = 'http://localhost/sigere/';
$config['index_page'] = '';
和我的链接不起作用
<a href="<?php echo base_url() ?>application/views/index.php" </a>
翻阅古今