Alex Bogias
Alex Bogias

Reputation: 1880

Create a simple redirect rule to a Joomla site

How i can create a new redirection rule to joomla's "Redirect Manager" or .htaccess file which can redirect guests from something like "something/item/13269248" to "somethingelse/item/13269248" BUT with any id there?

Upvotes: 0

Views: 448

Answers (2)

Alex Bogias
Alex Bogias

Reputation: 1880

I found the answer and you can do it like this:

RewriteRule ^something/item/(.*) /somethingelse/item/$1 [R=301,L,QSA]

Upvotes: 0

Techie
Techie

Reputation: 45124

htaccess

Redirect something/item/13269248 somethingelse/item/13269248

if you come across any issues let me know

Upvotes: 1

Related Questions