|
发表于 2009-3-12 23:53:35
|
显示全部楼层
你要不要先確認 主機商是否有支援 mod_rewrite 模組
然後再確認 配置文件 是否為
Options Indexs FollowSymLinks
AllowOverride all
------------------------------------------------------------------
然後其實在 config.php 中
$config['index_page'] = "";
可以設為這樣
----------------------------------------------------------------
我的 .htaccess 是設定為這樣
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
供你參考... |
|