程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> 解決CodeIgniter偽靜態失效

解決CodeIgniter偽靜態失效

編輯:PHP綜合

原來地址: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';

頁面終於顯示正常了;

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved