Forum Moderators: phranque

Message Too Old, No Replies

PT flag and google's crawl

         

scorpion

7:04 am on Oct 28, 2003 (gmt 0)

10+ Year Member



I am rewriting some php to html and wondering what

1) the PT flag does in terms of google seeing the page as static vs. dynamic

2) the HTTP mime type line

my code:

rewriteEngine on
rewriteRule ^h-(.*)\.html$ index.php?file=$1&t=h[L]
rewriteRule ^e-(.*)\.html$ index.php?file=$1&t=e [L]
rewriteRule ^(.*)\.html$ index.php?file=$1 [L]

What effect would [PT,L] have or even
[T=application/x-httpd-php][PT,L]

Seems to work fine without any of this stuff, but question is what would Google's crawler see?

closed

7:38 pm on Oct 31, 2003 (gmt 0)

10+ Year Member



To answer your questions:

1. Assuming the code you posted is all you have, adding the PT flag would have the same effect as not having it.

2. I'm not sure. Googlebot would probably read it just like it would an HTML file.