views:

167

answers:

2

Hi, thanks for looking.

I know you can't redirect anchor URLs to another page, but is it possible to redirect a URL to only a single anchor?

So

http://www.example.com/video/{title}

always gets sent to

http://www.example.com/video.php?title={title}#player

The only thing that changes is the title, anchor is always the same... I need to redirect to a certain slide on a coda slider

+1  A: 
RewriteRule ^/video/(.*) /video.php?title=$1#player [NE,L,R=301]
Paul Groves
Perfect, thank you!
Graham
+1  A: 

You should be able to use the # sign in a redirect rule if you specify the NE flag (No Escape)

Dan Andreatta
Thanks Dan, it seems to need the 301 redirect too
Graham