Codeigniter Htaccess 和 URL 重定向问题

Posted

技术标签:

【中文标题】Codeigniter Htaccess 和 URL 重定向问题【英文标题】:Codeigniter Htaccess and URL Redirect issues 【发布时间】:2015-04-15 12:42:30 【问题描述】:

我正在尝试在 CodeIgniter 上使用 .htaccess,但它不起作用。

我已经设置好了:

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

我在 Windows 上使用 XAMPP。

我的.htaccess

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

我的 URL 仍然包含 index.php,如果我尝试手动删除它,它会返回 404 错误

另外我担心的是我的登录页面:每当我登录时,我的 URL 都会卡在检查页面上。

我想知道如何重写我的 URL 以更改为主页而不是停留在检查页面上。

public function check()
        $this->load->model('check');
        $logcheck = $this->check->check($this->input->post('username'),$this->input->post('password'));

        if($logcheck == "admin")
            $this->load->view('home');
        else
            $this->load->view('login');
        
    

【问题讨论】:

我通过将 htaccess 从应用程序文件夹转移到我的根文件夹来工作。想知道如果您仍然需要移动它,他们为什么要把它放在那里 每个文件夹都有自己的 htaccess 文件,可防止浏览特定(系统)文件夹,例如应用程序或系统。你应该把它原封不动地留在那里。对于根文件夹,您需要创建自己的 .htaccess 文件。 登录后当前获取的 URL 以及预期的 URL @ShaifulIslam 登录后是:电话簿/检查/,我想要的是电话簿/家庭/。我该如何改变这个? @Tpojka 我明白了,我会试一试,谢谢 :) 【参考方案1】:

这个简单的 .htaccess 将删除你的 index.php

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

像这样改变你的检查功能

 public function check()
    $this->load->model('check');
    $logcheck = $this->check->check($this->input->post('username'),$this->input->post('password'));

    if($logcheck == "admin")
        //may  be you need to set login credential into session
        redirect('Phonebook/home/');
        //$this->load->view('home');
    else
        $this->load->view('login');
    

你的home函数会是这样的

public function home()
      //remember you need to check login validation from session
      $this->load->view('home');

要使用redirect 函数,请记住您已加载url 助手。 可能对你有帮助

【讨论】:

谢谢你,这很好,问题是我可以使用 htaccess 从 URL 中删除控制器吗? 你能给我举个例子吗?谢谢你,非常感谢:)【参考方案2】:

我发现如果你去这个地方http://www.insiderclub.org/downloads然后点击链接“这里是”下载htaccess zip文件夹大约有5个不同的适合htaccess的codeigniter

不确定这个 AllowOverride All 的作用是什么?

还有

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

制作

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

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

$config['index_page'] = '';

确保您已配置您的 route.php

主 htaccess 根目录。您不需要触摸其他 .htaccess

你会在 zip 中找到的第一个是这个

Options +FollowSymLinks
Options -Indexes
DirectoryIndex index.php
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteCond %REQUEST_FILENAME !-f
RewriteCond %REQUEST_FILENAME !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]

我的 xampp 和 codeigniter 2 & 3 似乎可以正常工作,但请尝试下载的那些。

这是 zip 文件夹中的第二个,用于 htaccess 多考虑 wamp 等。

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

【讨论】:

以上是关于Codeigniter Htaccess 和 URL 重定向问题的主要内容,如果未能解决你的问题,请参考以下文章

.htaccess 问题、虚拟子域和 Codeigniter

htaccess 帮助共存的 Codeigniter 和 Wordpress 安装

Codeigniter Htaccess 和 URL 重定向问题

Codeigniter - XAMP - htaccess 问题

使用 .htaccess 文件删除 CodeIgniter 中的 index.php

CodeIgniter后端前端.htaccess路由器