im working with wordpress, and am trying to create an htaccess rule that will detect -> #url-part1 at the end of each request. so if I have a url that reads:
http://----.com/wordpress/this-is-my-blog-post.html#url-part1
will translate the above url to:
http://----.com/wordpress/part1/this-is-my-blog-post.html
my attempt:
RewriteRule ^(*.)#url-part1 /part1/(*.) [L]
This of course doesn't work. If it were a static url this would be less of a challenge.
thanks!