I'm building a website comprised of PHP files, and i'm just curious... Google looks at these just like it does .htm files, doesn't it?
Longhaired Genius
6:47 pm on Dec 22, 2003 (gmt 0)
Google with crawl file.php as readily as it will crawl file.html. But it will crawl php files with query strings (file.php?&content=stuff) much more cautiously, and pagerank for those files will be lower (in my experience).
You can use mod_rewrite in a .htaccess file to rewrite your urls as static files and google will eat them up.
mylungsarempty
7:37 pm on Dec 22, 2003 (gmt 0)
Thanks for the feedback!
"use mod_rewrite in a .htaccess file to rewrite your urls as static files"
can you elaborate on that at all? i just recently became familiar with the .htaccess file.