Possible Duplicate:
Should I use a file extension or not?
My current hosting provider does not let me put PHP code inside of a .html page. So part of my content is in a database and displayed with PHP, but most of it is in pre-rendered .html files. I'd like to put more of it in .php files however I am concerned that search engines will penalize my .php pages because they are PHP. Is there any evidence so that effect? Thanks.
example.com/some-directory/. That would open your default file/filetype. Usuallyexample.com/some-directory/index.htmlorexample.com/some-directory/index.php, etc. Your host should have a way for you to set the default file to execute when none is specified. Then you could set it to beindex.php, which outputs the relevant HTML after pre-processing. – akTed Jan 16 '13 at 05:26example.com/some-directory/whatever.php(or .html, etc.). You should be directing them toexample.com/some-directory/whatever/, which actually is executingexample.com/some-directory/whatever/index.php. – akTed Jan 16 '13 at 05:31