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

Can somebody tell me how to treat .inc files as .php so I can include the .inc files into my php code. You can tell me change their extension to .php but it is not easy since there are hundred of pages which use the inc version.

Basically I need to declare types and handler in .htaccess.

I am running PHP over Apache.

Thanks.

share|improve this question
2  
You want them viewable in the browser? PHP can include them without Apache knowing what they are. – Cfreak Jun 30 '11 at 14:46
2  
It's a good idea partly so that Apache won't just show the source code (which can be an issue; .inc files often contain config stuff, like DB connection info). Though why people don't just name them with .php is beyond me. – cHao Jun 30 '11 at 14:47
2  
@cHao Better yet, that's why I have those sorts of files (actually, almost all PHP files) outside the webroot entirely. – Wiseguy Jun 30 '11 at 14:54

3 Answers

up vote 9 down vote accepted

If you are including them via include() or require() into your PHP code, there's no need to change the extension. Anything included via the include() family is already treated as PHP.

Addendum:

Please also see @Darhazer's answer configuring Apache to serve .inc as PHP if you have a need to do so. (It's not totally clear from your question).

share|improve this answer
@Micheal: I've tried it without the handler and it didn't work. I have not yet tried with the handler tho. I'll see then. – Tarik Jun 30 '11 at 15:54
You know what, It just worked without adding the handler. I was dealing with wrong peace of code. Thanks for the info. – Tarik Jun 30 '11 at 16:05

add this to your httpd.conf

<FilesMatch "\.inc$">
SetHandler application/x-httpd-php
</FilesMatch>

Or in the .htaccess file
AddHandler application/x-httpd-php .inc

share|improve this answer

Do nothing.

PHP doesn't care what file extension included files has, it will still execute any code between <?php and ?> in them.

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.