Possible Duplicate:
Can PHP read the hash portion of the URL?
I use hash in my url like this,
http://mysite.com/home/#/page/manage/
I want to get /page/manage/
via $_REQUEST
so I try url rewrite mod like this below,
RewriteRule ^home/#/([a-zA-Z0-9\-]+)/([a-zA-Z0-9\-]+)/?$ index.php?url=home&system_url=$1&system_name=$2 [L,QSA]
system_url=$1&system_name=$2
are not sent to $_REQUEST
of course.
How can I get the result below via $_REQUEST
?
array([url]=>'home',[system_url] => 'page',[system_name] => 'manage')