我有这个设置:
images
image1.jpg
image2.jpg
header.html
about
index.php
image3.jpg
但是访问 MyWebsite.com/About 最后给了它一个额外的斜线。我决定采用在我的主目录中创建一个名为 about 的文件的解决方案:
images
image1.jpg
image2.jpg
header.html
about
aboutfiles
image3.jpg
问题是现在这个文件不允许我使用 .php:
<?php include('header.html');?>
它没有显示头文件。我能做些什么来完成这项工作?