проблема маршрутизации в codeigniter - PullRequest
1 голос
/ 02 июня 2010

Я новичок в CodeIgniter и маршрутизации.

У меня есть контроллер Login, чей index() загружает представление для ввода имени пользователя / пароля. По мнению, форма имеет action="login/authenticate". Login-> authenticate () определяет, является ли логин действительным или нет. Если это верно, redirect('lobby'), если нет redirect('login')

routes.php:

$route['default_controller'] = "login"

config.php:

$config['base_url'] = "http://localhost/dts/";
$config['index_page'] = "index.php";

Проблема в том, что когда я захожу на http://localhost/dts/, нажимаю кнопку входа, я правильно (?) Перенаправлен на http://localhost/dts/login/authenticate, но браузер говорит Object not found!. Но когда я перехожу на http://localhost/dts/index.php/ (с косой чертой), он работает правильно (меня перенаправляют на http://localhost/dts/index.php/login/authenticate, и я вошел в систему)

Я попытался удалить «index.php» с помощью .htaccess:

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

и он больше не будет открываться даже http://localhost/dts/

Я в замешательстве .. что происходит?

Ответы [ 3 ]

4 голосов
/ 02 июня 2010

Проблема связана с последней строкой вашего файла .htaccess.

Поскольку ваше приложение находится в подкаталоге («dts»), косая черта перед «index.php» не будет работать. Попробуйте удалить его, чтобы ваш файл выглядел так:

RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L]
3 голосов
/ 02 июня 2010

Следуйте этой статье на вики 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>
1 голос
/ 02 июня 2010

Вы изменили это в своей конфигурации:

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

К этому:

$config['index_page'] = "";

Кроме того, прочитайте это сообщение от Джейми Рамбелоу:

http://jamieonsoftware.com/blog/entry/the-best-codeigniter-.htaccess

Это тот .htaccess, который я всегда использовал, и он прекрасно работает для меня.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...