Codeigniter htaccess и base_url - PullRequest
       2

Codeigniter htaccess и base_url

1 голос
/ 01 марта 2012

Я устанавливаю codeigniter и начинаю писать на нем некоторый код. Сначала я хочу удалить index.php и провести некоторые исследования по этому поводу. Я удаляю его с помощью небольшого кода htaccess ниже,

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

изатем установите свой base_url в config.php как

$config['base_url'] = 'http://localhost/pasaj/'; 

, а затем я решил использовать base_url в действиях формы

и написал его так (пожалуйста, посмотрите на действие)

  <form method="post" id="formSubmit" name="fSubmit" action=<?php base_url(); ?>"kayit/kayitOnay/">

но это не сработало

и выводит URL-адрес вот такenter image description here

все, что я сделал, не работает

, и я подозреваю, что из моего файла htaccess. Я удалил его.Я использую его для удаления index.php в codeigniter по умолчанию.

и обязательно устанавливаю новый базовый URL-адрес вот так

http://localhost/pasaj/index.php/

и не изменяю ничего выше кода формы

и это работает.

Теперь я хочу по-прежнему использовать этот файл htaccess для удаления index.php, но когда файл htaccess существует, мой base_url работает неправильно.Какие могут быть изменения в файле htaccess?

Ответы [ 3 ]

2 голосов
/ 01 марта 2012

попробуйте это

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

Мои файлы htaccess на локальном сервере выглядят так:

Для веб-сайта Zend Framework:

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]

Для веб-сайта CodeIgniter:

RewriteEngine on
RewriteBase /pasaj/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
RewriteRule .* - [E=REMOTE_USER:%{HTTP:Authorization},L]
0 голосов
/ 01 марта 2012

Чтобы удалить index.php из URL, вы можете попробовать следующее.

Open config.php from system/application/config directory and replace
$config['index_page'] = “index.php” by $config['index_page'] = “”

Create a “.htaccess” file in the root of CodeIgniter directory and add the following lines.

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

In some case the default setting for uri_protocol does not work properly. To solve this problem just replace
$config['uri_protocol'] = “AUTO” by $config['uri_protocol'] = “REQUEST_URI” from system/application/config/config.php
0 голосов
/ 01 марта 2012

Это мой стандартный файл 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>

Возможно, вам придется изменить базу перезаписи.

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