:CodeIgniterの中CodeigniterはGetリクエストでindex.phpなしで動作しませんか?
AddDefaultCharset utf-8
RewriteEngine On
RewriteBase/
DirectoryIndex index.php
Options All -Indexes
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?/$1 [L]
また設定:だから
$config['index_page'] = '';
$config['uri_protocol'] = 'AUTO';
を、すべてのページは、URLパスdomain/index.php/page
で開かれている。しかし、それはdomain/page
のために動作しません。
、私はこれをどのようにhtaccessファイルを動作しないようです確認できますか? mod_rewriteがオンになっているので – Babaev
あなたはどのバージョンのcodeigniterを使用していますか? – user4419336