0
你好朋友我有子域像exam.example.com,我需要刪除index.php從URL我的網址像exam.example.com/index.php/controller/func_name從子域URL刪除Index.php
我有以下頂替在config.php
$config['index_page'] = 'index.php';
更換
$config['index_page'] = '';
,並創建在我的項目.htaccess文件,寫了下面的代碼 -
RewriteEngine on
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
檢查這個希望它可以幫助你http://stackoverflow.com/questions/29542588/remove-php-from-url/42427045#42427045 –