Mattia Del Franco
Mattia Del Franco

Reputation: 385

Redirect from old rewritten url to new rewritten url

in my vBulletin forum I switched to another form of URL Rewriting.

OLD URLs (examples):

miosito.it/forum/showthread.php/1552-GUIDA-HEIMDALL-Odin-per-Mac-OS-X-e-Linux
miosito.it/forum/showthread.php/255-Ciao-a-tutti

NEW URLs (examples):

miosito.it/forum/threads/1552-GUIDA-HEIMDALL-Odin-per-Mac-OS-X-e-Linux
miosito.it/forum/threads/255-Ciao-a-tutti

How I can redirect via .htaccess to the new link?

Upvotes: 0

Views: 56

Answers (1)

anubhava
anubhava

Reputation: 784908

You can use this code in your /forum/.htaccess file:

RewriteEngine On
RewriteBase /forum/

RewriteRule ^showthread\.php/(.+)$ threads/$1 [L,NC,NE,R=302]

Upvotes: 2

Related Questions