-1

我在本地主机上有一个网站,最新的 MAMP 版本。子文件夹是 test2。

这是它的 .htaccess:

DefaultType text/html
DefaultType application/x-httpd-php

这是确保文件被视为 HTML 和 PHP 的正确方法吗?

4

1 回答 1

1

写成:

<Files *>
  DefaultType text/html
  DefaultType application/x-httpd-php
</Files>

dir 和 subdirs 中的所有文件都将以 PHP 格式打开。

于 2012-11-06T22:48:03.247 回答