7

私は現在CodeIgniterを使用してWebサイトを開発していますが、最近、ルーティングと.htaccessの問題に遭遇しました。

基本的に、私の単純なWebサイトの構造(簡単にするために私のプロジェクトを「CIExample」と呼びましょう)は次のとおりです。

-ホーム-
私たちについて-私
たちのサービス
-ニュース-お
問い合わせ

これは、ページコントローラーを使用して実装しました。このコントローラーには、それぞれのページのビューを呼び出す5つの機能があります。

ビュー「Home」を呼び出すHome()
About()、ビュー「AboutUs」などを呼び出します。

以前は、「ホーム」にアクセスするhttp://localhost/CIExample/index.php/page/homeには、URLウィンドウに入力する必要がありましたが、次のルートを設定した後、「ページ」(クラス名)の部分を削除できました。

$route['default_controller'] = 'page/home';
$route['home'] = 'page/home';
$route['about'] = 'page/about';
$route['service'] = 'page/service';
$route['news'] = 'page/news';
$route['contact'] = 'page/contact';

ただし、「index.php」を削除しようとすると、注意が必要な部分があります。と入力してホームページにアクセスできるようにしたいhttp://localhost/CIExample/home

そこで、CIフォーラム/チュートリアル/スタックオーバーフローで多くの検索を行い、.htaccessファイルのコードをいくつか見つけました。

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L] 

またはhttp://ellislab.com/forums/viewthread/197675/#929904
両方のコードを試しましたが、どれも機能しません。

http://localhost/CIExample/home404 not foundページに移動しますが、問題なくhttp://localhost/CIExample/index.php/home動作します。

何が悪かったのかしら?それは私のroutes.phpまたは.htaccess、あるいはその両方ですか?ありがとう。

注:「config/config.php」ファイルも変更しました->$config['index_page'] = '';

編集: 最後にそれは動作します!configフォルダー内のconfig.phpファイルを微調整した後、以下を設定します$config['uri_protocol'] = 'PATH_INFO';(「AUTO」から)。

利用可能な値:

| 'AUTO'            Default - auto detects
| 'PATH_INFO'       Uses the PATH_INFO
| 'QUERY_STRING'    Uses the QUERY_STRING
| 'REQUEST_URI'     Uses the REQUEST_URI
| 'ORIG_PATH_INFO'  Uses the ORIG_PATH_INFO

何が違うのかわかりませんが、 http://www.jotorres.com/2011/12/removing-index-php-from-url-in-codeigniter/のコメントの1つによると、同じコードが機能しない可能性があります。本番サーバー。

誰でも理由を説明できますか?

4

6 に答える 6

2

私はすべての CodeIgniter プロジェクトでこの htaccess を使用しています。サブフォルダーもサポートしています。

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /

    #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
</IfModule>
于 2013-03-18T16:39:22.493 に答える