I have a site ( say by name www.manoj.com
) and I have created a forum on sub-domain
forum.manoj.com
Now, I want to redirect all the links following manoj.com/forum/{anything else}
to forum.manoj.com/{anything else}
How can I do it.
Thanks
If you want to redirect
example.com/forum
toforum.example.com
, in[document_root]/forum/.htaccess
write:The
R=301
flag is to indicate it is a "permanent" redirect, Apache will send the headerHTTP/1.1 301 Moved Permanently
.If you really cannot add a
.htaccess
file there, in[document_root]/.htaccess
write:But this is not enough. You need to set the DNS record for
forum.example.com
and set up virtual host (if you use Apache) on the server before it will work. Typically virtual hosts are defined inhttpd.conf
. For more see this