如何删除kmz.php

ttcibm8c  于 2023-01-16  发布在  PHP
关注(0)|答案(3)|浏览(140)

在Codeigniter中,当我使用form_open()函数时,它会将index.php添加到url。
怎么才能去除它呢?
注意:我用htaccess从url中删除了index.php。

yacmzcpb

yacmzcpb1#

你可以给form_open()一个动作,类似于

form_open(base_url().'your_controller_name/function_name');
vs91vp4v

vs91vp4v2#

您没有删除$config ['index_page']=“index.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';
 $config['index_page'] = '';
o7jaxewo

o7jaxewo3#

打开应用程序. php
发现并改变:public $indexPage = '';

相关问题