redirect loop issue

Discussion in 'Server Operation' started by lezelf, Oct 11, 2011.

  1. lezelf

    lezelf New Member

  2. falko

    falko Super Moderator Howtoforge Staff

    What's the exact error message?

    Can you post the vhost configuration?
     
  3. lezelf

    lezelf New Member

    Error:

    Code:
    This webpage has a redirect loop
    The webpage at http://domain.tld/ has resulted in too many redirects. Clearing your cookies for this site or allowing third-party cookies may fix the problem. If not, it is possibly a server configuration issue and not a problem with your computer.
    Here are some suggestions:
    Reload this webpage later.
    Learn more about this problem.
    Error 310 (net::ERR_TOO_MANY_REDIRECTS): There were too many redirects.
    VHOST:

    Code:
    <Directory /var/www/domain.tld>
        AllowOverride None
        Order Deny,Allow
        Deny from all
    </Directory>
    
    <VirtualHost *:80>
          DocumentRoot /var/www/domain.tld/web
      
        ServerName domain.tld
        ServerAlias www.domain.tld 
        ServerAlias domain2.tld
        ServerAdmin [email protected]
    
        ErrorLog /var/log/ispconfig/httpd/domain.tld/error.log
    
    
        ErrorDocument 400 /error/400.html
        ErrorDocument 401 /error/401.html
        ErrorDocument 403 /error/403.html
        ErrorDocument 404 /error/404.html
        ErrorDocument 405 /error/405.html
        ErrorDocument 500 /error/500.html
        ErrorDocument 503 /error/503.html
    	
        <Directory /var/www/domain.tld/web>
            Options FollowSymLinks
            AllowOverride All
            Order allow,deny
            Allow from all
        </Directory>
        <Directory /var/www/clients/client1/web27/web>
            Options FollowSymLinks
            AllowOverride All
            Order allow,deny
            Allow from all
        </Directory>
    
    
        # cgi enabled
    	<Directory /var/www/clients/client1/web27/cgi-bin>
          Order allow,deny
          Allow from all
        </Directory>
        ScriptAlias  /cgi-bin/ /var/www/clients/client1/web27/cgi-bin/
        AddHandler cgi-script .cgi
        AddHandler cgi-script .pl
        # Clear PHP settings of this website
        <FilesMatch "\.ph(p3?|tml)$">
            SetHandler None
        </FilesMatch>
        # php as fast-cgi enabled
        <IfModule mod_fcgid.c>
          
    	  # SocketPath /tmp/fcgid_sock/
    	  
    	  # IdleTimeout n (3600 seconds)
    	  # An idle fastcgi application will be terminated after IdleTimeout seconds.
          IdleTimeout 3600
    	  
    	  # ProcessLifeTime n (7200 seconds)
          # A fastcgi application will be terminated if lifetime expired, even no error is detected.
          ProcessLifeTime 7200
    	  
    	  # MaxProcessCount n (1000)
          # The max count of total fastcgi process count.
          # MaxProcessCount 1000
          
    	  # DefaultMinClassProcessCount n (3)
          # The minimum number of fastcgi application instances for any one fastcgi application.
          # Idle fastcgi will not be killed if their count is less than n
          # Set this to 0, and tweak IdleTimeout
    	  DefaultMinClassProcessCount 0
    	  
    	  # DefaultMaxClassProcessCount n (100)
          # The maximum number of fastcgi application instances allowed to run for
          # particular one fastcgi application.
          DefaultMaxClassProcessCount 100
    	  
    	  # IPCConnectTimeout n (3 seconds)
          # The connect timeout to a fastcgi application.
          IPCConnectTimeout 8
    	  
    	  # IPCCommTimeout n (20 seconds)
          # The communication timeout to a fastcgi application. Please increase this
          # value if your CGI have a slow initialization or slow respond.
          IPCCommTimeout 360
          
    	  # BusyTimeout n (300 seconds)
          # A fastcgi application will be terminated if handing a single request
          # longer than busy timeout.
    	  BusyTimeout 300
    	  
        </IfModule>
        <Directory /var/www/domain.tld/web>
            AddHandler fcgid-script .php .php3 .php4 .php5
            FCGIWrapper /var/www/php-fcgi-scripts/web27/.php-fcgi-starter .php
            Options +ExecCGI
            AllowOverride All
            Order allow,deny
            Allow from all
        </Directory>
    	<Directory /var/www/clients/client1/web27/web>
            AddHandler fcgid-script .php .php3 .php4 .php5
            FCGIWrapper /var/www/php-fcgi-scripts/web27/.php-fcgi-starter .php
            Options +ExecCGI
            AllowOverride All
            Order allow,deny
            Allow from all
        </Directory>
        
        RewriteEngine on
        RewriteCond %{HTTP_HOST}   ^domain2.tld [NC]
        RewriteRule   ^/(.*)$ $1  [R,L]
    
        # add support for apache mpm_itk
        <IfModule mpm_itk_module>
          AssignUserId web27 client1
        </IfModule>
    
        <IfModule mod_dav_fs.c>
          # DO NOT REMOVE THE COMMENTS!
          # IF YOU REMOVE THEM, WEBDAV WILL NOT WORK ANYMORE!
          # WEBDAV BEGIN
          # WEBDAV END
        </IfModule>
    
    #REDIRECCION PHPMYADMIN
     Alias /phpmyadmin /usr/share/phpmyadmin
    </VirtualHost>
    
    
    
    Thank you very much for your help.
     
  4. lezelf

    lezelf New Member

    Oh i found out by reading the vhost. the problem was the second domain as alias. When removed it works.

    Second question then....how do you redirect an other domain to the main domain correctly?

    Thank you so much for your help (i
     
  5. till

    till Super Moderator Staff Member ISPConfig Developer

    Use "http://www.domain.tld/" as redirect path and not "/".
     
  6. Uysimty

    Uysimty New Member

    Did you solved this problem? I am facing the same issue
     
  7. Taleman

    Taleman Well-Known Member HowtoForge Supporter

    If the problem is the same, the same fix should work.
     

Share This Page