htaccess redirect all http://www.i.com/j/k* threads to http://www.i.com/j (forum index)

Use this code in a .htaccess file inside of the 'k' directory:

Code:
Redirect 301 /j/k /j

This will redirect all requests. For example, this request:

http://www.i.com/j/k/index.php

Will be redirected here:

http://www.i.com/j/index.php
 
Top Bottom