嗨开发人员我是codeigniter的新手,请帮助我.htaccess
这是我的文件。
下面是我的config/config.php
$config['base_url'] = 'pctci'
$config['index_page'] = '';
$config['uri_protocol'] = 'AUTO';
以下是我的观看页面,即main.php
(1("index.php/home/home1" )))
(2(echo base_url('/home/home1')))
这里的问题是链接1,2正在工作..我不想工作 “的index.php /家/和home1”
下面是我的.htaccess
注意:我已将下载的codeigniter重命名为pctci
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /pctci/
RewriteCond $1 ^(application|system|private|logs)
RewriteRule ^(.*)$ index.php/access_denied/$1 [PT,L]
RewriteCond $1 ^(index\.php|robots\.txt|favicon\.ico|public|assets|css|js|images)
RewriteRule ^(.*)$ - [PT,L]
RewriteRule ^(.*)$ index.php/$1 [PT,L]
</IfModule>