When using Mod_rewrite does google bot see the original url or the rewritten url?

Posted by sam on Pro Webmasters See other posts from Pro Webmasters or by sam
Published on 2012-06-14T18:57:23Z Indexed on 2012/06/15 15:27 UTC
Read the original article Hit count: 217

Filed under:
|
|

If i use the bellow code in my .htacess file would google bot (or any other search spiders) see the example.tumblr.com url or would they see the same url as the user ie. example.co.uk/blog ?

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{HTTP_HOST} ^example.co.uk/blog$
    RewriteCond %{REQUEST_URI} !/standard
    RewriteRule ^(.*)$ http://example.tumblr.com$1   [R]
</IfModule>

© Pro Webmasters or respective owner

Related posts about htaccess

Related posts about mod-rewrite