Помогите мне установить URL с помощью .htaccess в CodeIgniter - PullRequest
0 голосов
/ 14 августа 2011

Я использую CodeIgniter и хочу установить URL с помощью htaccess. Я пробовал много способов, но пока не удалось.

Структура моей папки:

--application
----corntrollers
-------public
----------home.php
----------log
-------------- login.php
-------admin
----views
-------public
----------home.tpl
----------log
-------------- login.tpl
--system
--mysite

Я хочу установить URL для перезаписи:

http://localhost/mysite/index.php/log/login
=>
http://localhost/mysite/log-in

Как я могу это сделать?

Ответы [ 2 ]

2 голосов
/ 26 октября 2012

Включить модуль перезаписи URL в Apache2:

a2enmod rewrite 

Изменить /config/config.php

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

до

$config['index_page'] = ""; 

А также

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

до

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

Правильный путь .htaccess:

#AddHandler application/x-httpd-php5 .php
<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]

    #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>

php_flag short_open_tag on

<FilesMatch "\.(php)$">
FileETag None

<IfModule mod_headers.c>
   Header unset ETag
   Header set Cache-Control "max-age=0, no-cache, no-store, must-revalidate"
   Header set Pragma "no-cache"
   Header set Expires "Wed, 11 Jan 1984 05:00:00 GMT"
</IfModule>
</FilesMatch>

Перезапустите службу Apache2:

sudo systemctl restart apache2.service

Надеюсь, это поможет.

0 голосов
/ 14 августа 2011

Прежде всего убедитесь, что перезапись URL-адреса включена, а затем создайте файл .htaccess с кодом ниже.

DirectoryIndex index.php
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ ./index.php/$1 [L,QSA]

Затем в /config/config.php

/*
    |--------------------------------------------------------------------------
    | Index File
    |--------------------------------------------------------------------------
    |
    | Typically this will be your index.php file, unless you've renamed it to
    | something else. If you are using mod_rewrite to remove the page set this
    | variable so that it is blank.
    |
    */
    $config['index_page'] = 'index.php';

изменить

*От 1009 *

до

$config['index_page'] = '';

Далее в

/ config / rout.php

$route['log-in'] = "log/log-in";
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...