0

フォームを投稿する場合を除いて、ルールの書き換えは正常に機能します。データが投稿されるURLはdomain / index.php / index.php / controller/methodです。

何か案は?すでに試してみたところ、ここで応答する可能性があります。

HTアクセス:

    # rewrite rules
    RewriteEngine On

    # ditch index.php
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ /index.php?/$1 [L] 
4

1 に答える 1

3

$config['index_page'] = 'index.php'; から index.php を削除できます。config.php ファイルにある変数。フル パス application/config/config.php。

交換

$config['index_page'] = 'index.php';

から

$config['index_page'] = '';

それがあなたのために働くことを願っています。

于 2012-10-22T08:04:55.180 に答える