原來地址:http://127.0.0.1/onsite/index.php/welcome/index/abc123
修改後地址:http://127.0.0.1/onsite/abc123.html
復制代碼 代碼如下:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /onsite
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
RewriteCond %{REQUEST_URI} ^application.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)\.html$ index.php/welcome/index/$1 [L]
</IfModule>
規則是沒有錯的,但萬想不到CodeIgniter竟然報404找不到頁面;經過測試在根目錄建立同名的html文件是能夠正常顯示的;
那問題應該是CI的配置導致的;經過一番波折,發現一個參數:
復制代碼 代碼如下:
$config['uri_protocol'] = 'AUTO';
把它改成:
復制代碼 代碼如下:
$config['uri_protocol'] = 'PATH_INFO';
頁面終於顯示正常了;