Hello fellow developers!
We are almost finished with developing first phase of our ajax web app. In our app we are using hash fragments like:
http://
Your forgot QSA directive (everyone missed the point =D )
RewriteCond %{QUERY_STRING} ^_escaped_fragment_=(.*)$
RewriteRule ^$ /webroot/crawler.php%1 [QSA,L]
By the way your $1
is well err... useless because it refers to nothing. So this should be:
RewriteCond %{QUERY_STRING} ^_escaped_fragment_=(.*)$
RewriteRule ^$ /webroot/crawler.php [QSA,L]
Tell me if this works.