Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a website on localhost, latest MAMP build. The subfolder is test2.

This is its .htaccess:

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

Is this the correct way to ensure files get treated as both HTML and PHP?

share|improve this question
You will be told to work on your accept rate. – Jason McCreary Nov 6 '12 at 22:32
work on your accept rate – F4r-20 Nov 6 '12 at 22:37

1 Answer

Write it as:

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

All files in dir and subdirs will be opened as PHP.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.