|
原來地址: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';
頁面終于顯示正常了;
php技術:解決CodeIgniter偽靜態失效,轉載需保留來源!
鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。