Login

Presuming you own the domain user.com, you can create a subdirectory directadmin, in the public_html directory, and use a .htaccess file to create a redirect.

To make it global, add the subdirectory and .htaccess file to your master setup skeleton files.

Jeff
 
Sure.

I hadn't thought of that.

Create a redirect in /etc/httpd/conf/httpd.conf just before the per domain blocks.

Sorry, but I don't have time right now to look up the syntax.

Jeff
 
DirectAdmin creates an alias /config which point to a php file which in turn redirects you to DirectAdmin's login page.
Open your main httpd.conf file and change that alias so that instead of
Code:
Alias /config /var/www/html/redirect.php
It looks like
Code:
Alias /directadmin /var/www/html/redirect.php

And restart apache. Hope that's what your were looking for :)
 
Back
Top