ステップ:-1「application / config」フォルダを開き、「config.php」ファイルを開きます。config.phpファイルで以下のコードを見つけて置き換えます。
//find the below code
$config['index_page'] = "index.php"
//replace with the below code
$config['index_page'] = ""
ステップ:-2 CodeIgniterフォルダーに移動し、.htaccessを作成します
Path:
Your_website_folder/
application/
assets/
system/
.htaccess <——— this file
index.php
ステップ:-3 .htaccessファイルに以下のコードを記述します
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
ステップ:-4場合によっては、uri_protocolのデフォルト設定が正しく機能しません。この問題を解決するには、「application / config / config.php」ファイルを開き、以下のコードを見つけて置き換えます
//Not needed for CodeIgniter 3 its already there.
//find the below code
$config['uri_protocol'] = "AUTO"
//replace with the below code
$config['uri_protocol'] = "REQUEST_URI"
Wampサーバーでは、rewrite_moduleがデフォルトで無効になっているため機能しません。有効にする必要があります。これを行うには、次のようにします
- WAMPアイコンを左クリック
- Apache
- Apacheモジュール
- 左クリックrewrite_module
元のドキュメント
リンクの例