1

これまでのところ、2.1.3の新規インストールがあり、次の.htaccessファイルを配置しました。

RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]

ルートディレクトリ内、アプリケーション、システムなどと同じレベル。

  • で編集$config['index_page'] = 'index.php';
    $config['index_page'] = '';ましたapplication\config\config.php
  • オンにしましたrewrite_module
  • Apacheを再起動しました。

しかし、関連する投稿の解決策を含め、すべての解決策を試した後でも、404になってしまいます。

4

3 に答える 3

2

これが私のhtaccessであり、私にとってはうまくいくことを願っています。

RewriteBase /codeigniter/ の RewriteEngine

#Removes access to the system folder by users.
#Additionally this will allow you to create a System.php controller,
#previously this would not have been possible.
#'system' can be replaced if you have renamed your system folder.
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php?/$1 [L]

#When your application folder isn't in the system folder
#This snippet prevents user access to the application folder
#Submitted by: Fabdrol
#Rename 'application' to your applications folder name.
RewriteCond %{REQUEST_URI} ^application.*
RewriteRule ^(.*)$ /index.php?/$1 [L]

#Checks to see if the user is attempting to access a valid file,
#such as an image or css document, if this isn't true it sends the
#request to index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]

</IfModule>

<IfModule !mod_rewrite.c>
    # If we don't have mod_rewrite installed, all 404's
    # can be sent to index.php, and everything works as normal.
    # Submitted by: ElliotHaughin

ErrorDocument 404 /index.php

于 2013-02-05T05:56:24.073 に答える
1

httpd.conf を変更して mod_rewrite を有効にし、webroot ディレクトリで AllowOverride が「ALL」に設定されていることを確認する必要があります。

于 2013-02-05T05:47:00.703 に答える
1
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php/$0 [PT,L]

これを使えばうまくいく

于 2013-02-05T05:52:04.390 に答える