Here is an example of old url:

index.php/component/option,com_fireboard/Itemid,180/catid,15/func,view/id,4272/#4339
And now url is like
index.php/component/option,com_kunena/Itemid,180/catid,15/func,view/id,4272/#4339
So, can you help me how to redirect via mod_rewrite if com_fireboard found in query string, and just replace it with "com_kunena"?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

How about this?

RewriteRule (.*)com_fireboard(.*) $1com_kunena$2
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.