Reputation:
how can I rewrite the following URL schema http://www.example.com/blog/xyz to http://www.example.com/blog/#xyz?
Upvotes: 0
Views: 46
Reputation: 2536
Try it like this (don't forget the NE
flag):
RewriteEngine On
RewriteRule ^blog/([^#]+)$ blog/#$1 [L,NE]
Upvotes: 0