This is a discussion on Robot and crawlers ??? PHP query within the alt.comp.lang.php forums, part of the PHP Programming Forums category; It might only be a very simple question. But do robots, crawlers and search engines (google etc), look into php ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
If they did not, you would not find my website www.eigelb.at in Google.
(http://www.google.at/search?q=paul+s...-8&hl=de&meta=) Paul Schmidinger "<aa ka" <aaka@california.com> schrieb im Newsbeitrag news:bu6oc0l6h6tsipid99nts32gqqc4dorcc1@4ax.com... > It might only be a very simple question. > > But do robots, crawlers and search engines (google etc), look into php > generated pages ?? > > TIA |
|
|||
|
Some do, some don't. There are many different things you can do, for
example, at http://tzxfs.dnsalias.com/~nosanity/engines.phtml, what we do here in engines.phtml is: <? $cid = 1; include('index.phtml'); ?> This way, it's just like hitting http://tzxfs.dnsalias.com/~nosanity/index.phtml?cid=1, but it's more search engine friendly. Check out http://www.seochat.com/ for more discussion on Search Engine Optimization; I'm sure they could define what different search engines look for when indexing websites. On Sun, 13 Jun 2004 13:43:04 +0100, "<aa ka" <aaka@california.com> wrote: >It might only be a very simple question. > >But do robots, crawlers and search engines (google etc), look into php >generated pages ?? > >TIA |
|
|||
|
> But do robots, crawlers and search engines (google etc), look into php > generated pages ?? as already stated some do and some dont, google is 1 of the ones that do, but they will only index so many of your pages in case it gets caught in an endless loop |
|
|||
|
*** <aa ka wrote/escribió (Sun, 13 Jun 2004 13:43:04 +0100):
> But do robots, crawlers and search engines (google etc), look into php > generated pages ?? They never see PHP code, as you probably figured out. Most of them just follow links. -- -- -- Álvaro G. Vicario - Burgos, Spain -- |
|
|||
|
"<aa ka" <aaka@california.com> wrote in message
news:bu6oc0l6h6tsipid99nts32gqqc4dorcc1@4ax.com... > It might only be a very simple question. > > But do robots, crawlers and search engines (google etc), look into php > generated pages ?? Yes, but you have to be careful not to use sessions, because most robots will ignore pages that use sessions. -- Gorf |