ошибка пути к кодовому разделителю - PullRequest
0 голосов
/ 13 декабря 2011

Я отключил index.php в моем codeigniter с помощью .htaccess, а также оставил пустой файл индекса в config.php. Это код .htaccess

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

У меня есть ссылка на мою функцию контроллеракак 'cuser / authenticate', поэтому URL выглядит как

mydoamin.com/cuser/authenticate

, но он показывает путь сообщения об ошибке, не найденный, когда я редактирую вышеуказанный URL-адрес в

mydomain.com/index.php/cuser/authenticate

, он отображает вывод

как я могу решить эту проблему?

Ответы [ 4 ]

1 голос
/ 29 февраля 2012
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php/$0 [PT,L]

$config['index_page'] = '';
$config['uri_protocol'] = 'AUTO';

Эти настройки у меня сработали

1 голос
/ 13 декабря 2011

вы пробовали это?

RewriteEngine on
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
1 голос
/ 13 декабря 2011

Вы можете изменить $uri_protocol в application/config/config.php с "AUTO" на "REQUEST_URI".

0 голосов
/ 14 декабря 2011

Вот прямое копирование / вставка из моих установок codeigniter, последняя версия ..

установите следующее в вашем config.php

$config['index_page'] = '';
$config['uri_protocol'] = 'REQUEST_URI';

создайте .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> 
...