Hello to all the developers!
We are almost done developing the first phase of our ajax web application. In our application, we use hash fragments, such as:
http://ourdomain.com/
I understand that Google will select this URL and make a request to the server in this form:
http:
everything is perfect except ...
I would like to redirect this request to another script
So:
RewriteCond %{QUERY_STRING} ^_escaped_fragment_=(.*)$ RewriteRule ^$ /webroot/crawler.php$1 [L]
The problem is that when I try print_r ($ _ REQUEST) in crawler.php I get only:
Array ( [_escaped_fragment_] => list=last_ads?order=date [direction] => desc )
I would like to receive
Array ( [list] => last_ads [order] => date [directions] => des )
I know that I can use php to further break the first argument, but I don't want to;)
please inform
==================================================== == EDIT ... some corrections in text and logic
source share