XF 1.1 Redirect Question

xpl0iter

Active member
We have an article section in our forums.
Once the user articles are approved we are planning to move those articles to our wordpress blog.

Is there anyway I could redirect the article link from the article section to the link from the blog post?
So once the articles are approved, the link from Forum's article section will redirect the users to the corresponding blog post in our blog!
 
You can manually redirect one location to another by using this code in your .htaccess file:

Code:
Redirect 301 /threads/title.1/ /blog/title.1/

You would have to do this for each thread link.
 
Top Bottom