Forum Moderators: phranque
I've heard that it's possible to modify the paths of subdomains using the .htaccess server file. Does anyone know how this is done and the implications with it? (i.e. any performance limitations?)
Namely, my subdomain is located at:
..../public_html/pointed_domain/subdomain
Because I've just created a new content manager, I'd like to move the subdomain to:
..../public_html/pointed_domain/category/subdomain
Can this be done simply or is it better to pester our server admin to do it.
Thanks,
Chris
There are several ways to rewrite URLs to redirect them to a new subdirectory. Apache mod_alias [httpd.apache.org] and mod_rewrite [httpd.apache.org] modules both support this function.
In addition, you can do it at the server level in httpd.conf, or in a per-directory context using .htaccess.
Server performance impact is minimal - much less than calling up any script.
Ref: Introduction to mod_rewrite [webmasterworld.com]
HTH,
Jim