Reputation: 1880
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
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
Reputation: 45124
htaccess
Redirect something/item/13269248 somethingelse/item/13269248
if you come across any issues let me know
Upvotes: 1