我有一个关于localhost的网站,最新的MAMP版本。 子文件夹是test2。
这是它的.htaccess:
DefaultType text/html
DefaultType application/x-httpd-php
这是确保文件同时被视为HTML和PHP的正确方法吗?
答案 0 :(得分:1)
将其写为:
<Files *>
DefaultType text/html
DefaultType application/x-httpd-php
</Files>
dir和subdirs中的所有文件都将以PHP格式打开。