Well I have tried Alias-domain, Sub-domain and all combinations there-off and if I don't get a solid error I keep getting the same problem. My Scenario is this DNS set = ok pop.domain.tld A IP LITERAL DNS set = ok www.domain.tld A IP LITERAL If i set the redirect to my webmail /var/www/webmail Code: lrwxrwxrwx 1 root root 16 Aug 23 20:34 webmail -> /var/www/webmail/ I get Can you please explain why ISPConfig 3 generate this? Code: Subdomain for website Domain Host [pop] Domain [domain.tld] Redirect Type [L] Redirect Path [/webmail] Active [Y] Code: /etc/apache2/sites-available/domain.tld.vhost Code: <VirtualHost *:80> DocumentRoot /var/www/domain.tld/web ServerName domain.tld ServerAlias *.domain.tld ServerAlias pop.domain.tld ServerAdmin [email protected] . . . . RewriteEngine on RewriteCond %{HTTP_HOST} ^pop.domain.tld$ [NC] RewriteCond %{REQUEST_URI} !^/webdav/ RewriteRule ^/(.*)$ /webmail/$1 [L] </VirtualHost> Help - I guess my knowledge of this is not good
The redirect that ispconfig created in the file is correct for the details that you entered in the ispconfig interface. Please explain what you want the redirect to do.
I simply want users that enter http://pop.domain.tld to go to the http://domain.tld/webmail/src/login.php or http://domain.tld/webmail/ where they can use squirrelmail http://www.domain.tld and http://domain.tld has web content It used to work then we re-did the domain.tld website - thereafter it was messed up. We changed it ti SuEXEC and fastCGI for use with Joomla Why does the directive add so many /webmail's ?
You added a loop, so apache adds webmail until the max loop depth is reached. Change the redirect type to "noflag" and set the redirect path to "http://domain.tld/webmail/"
Changing to noflag does not remove the loop, where else can the loop get created? What must I search for?