【发布时间】:2014-12-20 16:06:41
【问题描述】:
我是 codeigniter 的新手,我只想从一页切换到另一页。我正在使用 localhost 和 wamp 服务器
在配置文件中:
$config['index_page'] = 'index.php';
我改成
$config['index_page'] = '';
在 .htaccess 文件中:
Deny from all
我改成
RewriteEngine on
RewriteCond $1 !^(index\.php|images|stylesheets|scripts|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L]
并将此文件保存在应用程序、系统和根目录中。
提前谢谢,请帮助我,真的需要帮助。
【问题讨论】:
标签: php apache .htaccess codeigniter localhost