htaccess redirect question

I need to rewrite part of a path. For example my I need to go from

site/canine/gallery/v/restofpath

to site/gallery/v/canine/restofpath

Does anyone have any suggestions for this? I've tried doing simple folder rewrites and that doesn't seem to do the trick.

Thank you

2 Replies

Which web server are you using? What have you tried that didn't work?

It's apache 2 with mod_rewrite.

This is what I've tried so far.

RewriteCond %{HTTP_HOST} ^/canine/gallery/v/$ [NC]

RewriteRule ^(.*)$ http://colorgenetics.info/gallery/v/canine/$1 [R=301,L]

RewriteRule ^canine/gallery/v/(.*)$ gallery/v/canine/$1 [R=301,NC,L]

RewriteRule ^canine/gallery/v/$ gallery/v/canine/$1 [R=301,NC,L]

Redirect permanent /canine/gallery/v/ http://colorgenetics.info/gallery/v/canine/

RewriteRule ^canine/gallery/v/(.*) /gallery/v/canine/$1 [L,R=301]

trys to work redirects to http://colorgenetics.info/gallery/v/can … gallery/v/">http://colorgenetics.info/gallery/v/canine/?q=canine/gallery/v/ where i get a drupal page not found error

RewriteRule ^canine/gallery/v/ /gallery/v/canine/$1 [L,R=301]

Works to redirect just the line canine/gallery/v/ but anything of the form canine/gallery/v/restofurl gives a generic link broken server reply

Reply

Please enter an answer
Tips:

You can mention users to notify them: @username

You can use Markdown to format your question. For more examples see the Markdown Cheatsheet.

> I’m a blockquote.

I’m a blockquote.

[I'm a link] (https://www.google.com)

I'm a link

**I am bold** I am bold

*I am italicized* I am italicized

Community Code of Conduct