web-dev-qa-db-ja.com

.htaccess書き換えルールが機能しない(CodeIgniter)

これが私がやりたいことです:私はCodeIgniterを使用しているので、すべてのURLはhttp://example.com/index.php/controller/functionの形式です。ただし、私が作成したスクリプトは、基本的に、いくつかの組み込み統計関数を備えた栄光のリンク短縮サービスであるため、すべてのURLをhttp://example.com/linkの形式にする必要があります。ただし、スクリプトの管理パネルもhttp://example.com/admin/で利用できるようにしたいと思います。 CodeIgniterの「URLからindex.phpを削除」の例.htaccessを状況に合わせて調整しました。これは、ローカルホスト(EasyPHP 5.3.9)で正しく機能しますが、本番サーバー(HostGator)にアップロードすると、管理パネルへのリクエストは通常​​のリンクのように処理され、管理コントローラー(index.php/redirection/link)ではなくリンクコントローラー(index.php/admin)に渡されます。これが私の.htaccessです:

<IfModule mod_rewrite.c>
    RewriteEngine On

    # 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 the administration panel,
    # and if so sends the request to the admin controller
    RewriteRule ^admin/?$ index.php/admin/ [L]
    RewriteRule ^admin/([^.]+)/?$ index.php/admin/$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 the redirect controller
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php/redirection/link/$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>

私が間違っていることはありますか?どんな助けや提案もいただければ幸いです!

1
stevenmirabito

以下の行を。htaccessから削除します

RewriteRule ^admin/?$ index.php/admin/ [L]
RewriteRule ^admin/([^.]+)/?$ index.php/admin/$1 [L]

この2行を追加しますroutes.php

$route['admin']="<directory_name_in_contollers>/<controller_name>";
$route["admin/(:any)"]="<directory_name_in_contollers>/$1";

例:

$route['admin']="admin/welcome";
$route["admin/(:any)"]="admin/$1";

ここで、welcome.phpapplication\controllers\admin\welcome.phpに配置されたコントローラーです。

1
mrsrinivas