|
在自己的电脑上用zendserver建的服务器,在网站根目录添加了.htaccess文件
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
config已经设置了
$config['index_page'] = "";
访问的时候还是要加index.php,直接用http://localhost/访问更目录提示404……纠结
难道是rewrite有问题???
百度谷歌无数,找不到答案……
求解…… |
|