Teej
Teej

Reputation: 12873

Redirect Old urls to new urls via htaccess

I currently have a bunch of urls to redirect to their new urls: I basically have to remove 'blog' from the start and add the 'uri' in there:

redirect 301 /blog/posts/view/follow-twitter http://domain.net/posts/view/uri/follow-twitter

redirect 301 /blog/posts/view/around-the-corner http://domain.net/posts/view/uri/around-the-corner

This is the rest of the .htaccess I have:

Options +FollowSymLinks
IndexIgnore */*
RewriteEngine on

# if a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

# otherwise forward it to index.php
RewriteRule . index.php

Upvotes: 1

Views: 5165

Answers (1)

Dejan Marjanović
Dejan Marjanović

Reputation: 19380

RewriteRule ^blog/(.*)$ http://domain.net/uri/$1 [R=301]

edit:

RewriteRule ^blog/posts/view/(.*)$ http://domain.net/posts/view/uri/$1 [R=301]

Upvotes: 3

Related Questions