当前位置:  开发笔记 > 编程语言 > 正文

使用CodeIgniter http:// :: 1/codeigniter /在html源代码中的IP地址显示在表单操作中

如何解决《使用CodeIgniterhttp://::1/codeigniter/在html源代码中的IP地址显示在表单操作中》经验,为你挑选了2个好方法。

我在Xampp上安装了CI脚本.目前我正在处理表单,当我点击提交html时,它什么也没做.

我试过了

echo form_open('verifylogin');
echo form_open();

它在源代码上显示为

分别.

我不明白这"http://::1/"是什么以及如何摆脱它?



1> Mr. ED..:

如果ip地址显示在表单操作URL中

http://::1/yourproject/

http://127.0.0.1/yourproject/

您有可能将基本网址留空

/*
|--------------------------------------------------------------------------
| Base Site URL
|--------------------------------------------------------------------------
|
| URL to your CodeIgniter root. Typically this will be your base URL,
| WITH a trailing slash:
|
|   http://example.com/
|
| WARNING: You MUST set this value!
|
| If it is not set, then CodeIgniter will try guess the protocol and path
| your installation, but due to security concerns the hostname will be set
| to $_SERVER['SERVER_ADDR'] if available, or localhost otherwise.
| The auto-detection mechanism exists only for convenience during
| development and MUST NOT be used in production!
|
| If you need to allow multiple domains, remember that this file is still
| a PHP script and you can easily do that on your own.
|
*/

$config['base_url'] = '';

现在,在最新版本的codeIgniter中,不建议您将base_url留空.

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

$config['base_url'] = 'http://www.example.com/';

结束网址总是好的 /

您可能需要在此处为​​表单创建路线

application > config > routes.php

CodeIgniter 3: 路由

CodeIgniter 2: 路由


更新:

使用CodeIgniter 3 +版本:

当你创建一个文件时,你必须在第一个字母上打上大写字母file namesclasses.

有时会发生的事情是,它可能在小型的localhost环境中工作,但是当你去实时服务器时,有时会抛出错误或者不提交表单正确等.

示例:来自控制器这也适用于模型

这是有效的

文件名: Verifylogin.php




这是有效的

文件名: Verify_login.php




这是不是有效

文件名: verifylogin.php

class verifylogin extends CI_Controller {

    public function __construct() {
       parent::__construct();
    }

    public function index() {

    }

}

这是不是有效

文件名: Verify_Login.php

class Verify_Login extends CI_Controller {

    public function __construct() {
       parent::__construct();
    }

    public function index() {

    }

}

Codeigniter Doc's



2> sibaspage..:

转到application/config/config.php set base_url

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

并刷新您的应用程序

然后::1错误应该消失.

推荐阅读
赛亚兔备_393
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有