|
我照着官网上写了.htaccess文件。
RewriteEngine on
RewriteCond $1 !^(index\.php|public|uploads|mapinfo\.xml|user_guide|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L]
URL变成了这样:
http://localhost/project/products
正常!
之后又想添加URL后缀。
在config.php中修改:
$config['url_suffix'] = '.html';
然后把base_url()改成了site_url();
URL后缀是出来了,可是变成了:
http://localhost/project/index.php/products.html
怎么在添加URL后缀的同时删除index.php呢???
|
|