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?
- SoapClient 设置自定义 HTTP Header 2021-01-01
- 没有作曲家的 PSR4 自动加载 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- Laravel 仓库 2022-01-01
- 正确分离 PHP 中的逻辑/样式 2021-01-01
- Mod使用GET变量将子域重写为PHP 2021-01-01
- 带有通配符的 Laravel 验证器 2021-01-01
- PHP Count 布尔数组中真值的数量 2021-01-01
- 如何定位 php.ini 文件 (xampp) 2022-01-01
- 从 PHP 中的输入表单获取日期 2022-01-01