如何打开index.php
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何打开index.php相关的知识,希望对你有一定的参考价值。
如何打开index.php
首先你需要搭建一个PHP环境,建议使用phpstudy,99%的PHP程序员都用这个。中文软件,安装流程一直下一步就行。安装好后,把index.php放到开发目录,然后直接在地址栏打赏localhost就可以直接访问index.php(默认访问index.php) 参考技术A 你要找开编辑还是打开运行?
打开编辑:右键->打开方式->经文本方式打开
打开运行:首先你要有个支持运行PHP的环境。然后用浏览器浏览。
推荐本地PHP集成环境安装包:PHPNOW xampp 安装以后,把PHP文件。如index.php放在htdocs.打开浏览器,输入地址:http://localhost/便能运行本回答被提问者采纳 参考技术B 直接用浏览器是不能打开的,要用文本编辑器
Codeigniter 表单打开如何删除 index.php
【中文标题】Codeigniter 表单打开如何删除 index.php【英文标题】:Codeigniter Form Open How To Remove index.php 【发布时间】:2012-09-27 07:58:57 【问题描述】:在 Codeigniter 中,当我使用 form_open()
函数时,它会将 index.php
添加到 url。如何删除它?注意:我使用 htaccess 从 url 中删除了 index.php。
【问题讨论】:
全局执行:***.com/questions/12653589/… 【参考方案1】:你可以对 form_open() 进行操作,像这样
form_open(base_url().'your_controller_name/function_name');
【讨论】:
form_open(base_url('your_controller_name', 'function_name'));
实际上会更合适【参考方案2】:
您没有从 $config['index_page'] = "index.php"; 中删除 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'] = '';
【讨论】:
这个答案应该被接受而不是另一个。另一个需要始终添加 base_url(),而从配置文件中的 var index_page 中删除 index.php 是使用 mod_rewrite 时建议的解决方案。以上是关于如何打开index.php的主要内容,如果未能解决你的问题,请参考以下文章
使用 XAMPP localhost 打开 index.php?
如何设置网页默认index.htm而不是index.php?