Regular expression with #
-
hi everybody, this is driving me crazy.
I have this URL that must be converted internally to this
http://www.mysite.com/suenatremendo#pagina-6 /prueba.php?rgt=15&page=6&f=
my rewrite rule
RewriteRule ^/suenatremendo#pagina-([0-9]+)$ /prueba.php?rgt=15&page=$1&f=
doesnt work
I try # not woring
I try /#/ not working
If I replace the # with an - it works like this http://www.mysite.com/suenatremendo-pagina-6
Why?
Thanks
-
Any idea?
-
This is a tough one. I've pinged a few folks who might be able to help. Sorry for the delay!
-
great, tell me if you have news
thanks
-
From what I understand, the # doesn't ever get sent to the server, so it would be impossible to include it in a rewrite rule.