Quote:
Originally Posted by cd34
personally, I would leave them as .htm or .html files and just parse them. No supported evidence behind it, but, a gut feeling that google prefers .html files over .php
If you wanted to redirect files, you could do it with mod_rewrite.
If you want to silently serve the .php as .html (and for some reason didn't want to parse .html)
Code:
RewriteEngine on
RewriteRule ^(.*).html$ $1.php [L]
|
So if you wanted a "page.php" to display as "page.html" to perhaps take advantage of Google's hypothetical preference, this would work?
Interesting thread...wish I understood more of this stuff...