How to make Apache serve index.php instead of index.html?(如何让 Apache 服务 index.php 而不是 index.html?)
问题描述
如果我将以下行放在 index.html
文件中,以使 Apache 包含 index.php
文件:
If I put the following line in a index.html
file, to make Apache include the index.php
file:
<?php include("/Live/ls_client/index.php"); ?>
访问 index.html
页面告诉我:
<!--?php include("/Live/ls_client/index.php"); ?-->
这是为什么呢?为什么它实际上不包含 PHP 文件?
Why is that? Why doesn't it actually include the PHP file?
推荐答案
正如其他人所指出的,您很可能没有设置 .html
来处理 php 代码.
As others have noted, most likely you don't have .html
set up to handle php code.
话虽如此,如果您所做的只是使用 index.html
来包含 index.php
,那么您的问题可能应该是我该如何使用 index.php
作为索引文件?
Having said that, if all you're doing is using index.html
to include index.php
, your question should probably be 'how do I use index.php
as index document?
在这种情况下,对于 Apache (httpd.conf),搜索 DirectoryIndex
并将该行替换为该行(仅当您启用 dir_module
时才有效,但这是大多数安装默认):
In which case, for Apache (httpd.conf), search for DirectoryIndex
and replace the line with this (will only work if you have dir_module
enabled, but that's default on most installs):
DirectoryIndex index.php
如果您使用其他目录索引,请按优先顺序列出它们,即
If you use other directory indexes, list them in order of preference i.e.
DirectoryIndex index.php index.phtml index.html index.htm
这篇关于如何让 Apache 服务 index.php 而不是 index.html?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何让 Apache 服务 index.php 而不是 index.html?
基础教程推荐
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 在多维数组中查找最大值 2021-01-01