vote up 1 vote down star

if i change the extension of html file as .php means it will make any changes..?

flag
2  
Yes - your html file will have a different extension. – Arnis L. Aug 13 at 9:46

2 Answers

vote up 10 vote down

The effect of changing a .html extension to .php depends on the web server configuration; if the server is configured with PHP installed and associated with .php files, then the PHP preprocessor will be run against the file before the HTML is printed. In the case of a standard HTML file with no extras, this will make no obvious difference, although client-side caching may behave differently, and any incoming links will of course be broken. There's also a slight performance penalty.

If PHP isn't installed, or hasn't been configured to handle .php files (some PHP 5 configurations are set for .php5) then the web server will usually spit out the raw text of the file, which may or may not be treated as HTML by the browser.

link|flag
and you'll have a little performance penalty – klez Aug 13 at 11:32
@klez: Cheers for the reminder - noted in the answer. – Rob Aug 17 at 1:47
vote up 5 vote down

No. It will just mean the page goes through the PHP interpreter rather than being directly served (assuming the PHP interpreter actually exists and is configured properly with your server).

link|flag

Your Answer

Get an OpenID
or

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