1
我想將index.php更改爲index.abc(或index.aspx)。我試圖改變$ config ['index_page'],但不能。我只能刪除index.php並通過$ config ['url_suffix'] ='.abc'在url後添加.abc;請幫幫我。如何更改Codeigniter中的PHP擴展
$config['index_page'] = 'index.abc';
我想將index.php更改爲index.abc(或index.aspx)。我試圖改變$ config ['index_page'],但不能。我只能刪除index.php並通過$ config ['url_suffix'] ='.abc'在url後添加.abc;請幫幫我。如何更改Codeigniter中的PHP擴展
$config['index_page'] = 'index.abc';
使用這個在你的.htaccess,它應該工作
RewriteEngine on
RewriteRule ^(.*)\.abc$ $1.php
,離開這一個,因爲它是/是
$config['index_page'] = 'index.php';
您可以在
/application/config/config.php
$config['url_suffix'] = '.abc';
使用這個後綴
不好,這不工作:404頁未找到 – thai6070
@th ai6070你有mod重寫啓用?因爲它適用於我 – Tewdyn
是的,Mod重寫已啓用 – thai6070