RewriteRule ruft sich anscheinen immer wieder selber auf

Status
Not open for further replies.

nixdorf

Registered User
Hallo,

ich habe auf einem Root-Server (debian/etch) mit Apache2 in der httpd.conf bei den VirtualHosts folgenden Eintrag:

Code:
####
####  VirtualHosts
####

# Bitte geben Sie in der naechsten Zeile die IP-Adresse Ihres Servers an!
<VirtualHost ipadresse:80>
# Bitte passen Sie in der naechsten Zeilie den Servernamen an
#  LimitInternalRecursion 300
  ServerName $$SERVERNAME
  DocumentRoot /usr/local/pd-admin2/htdocs
  AddHandler cgi-script .cgi .pl
  RewriteEngine On
# Alias /Microsoft-Server-ActiveSync /usr/local/pd-admin2/htdocs/z-push/
  Alias /html /opt/pdadmin/www/html
  Alias /js /opt/pdadmin/www/js
  Alias /css /opt/pdadmin/www/css
  Alias /images /opt/pdadmin/www/images
  Alias /customer /opt/pdadmin/www/customer
  Alias /administrator /opt/pdadmin/www/administrator
  Alias /pop3 /opt/pdadmin/www/pop3
[b]  RewriteRule  /Microsoft-Server-ActiveSync /usr/local/pd-admin2/htdocs/z-push/index.php[/b]
  RewriteRule  /customer/sid/[a-z0-9]+/(.*) /opt/pdadmin/www/customer/$1
  RewriteRule  /administrator/sid/[a-z0-9]+/(.*) /opt/pdadmin/www/administrator/$1
  RewriteRule  /pop3/sid/[a-z0-9]+/(.*) /opt/pdadmin/www/pop3/$1
  SetEnv RLIMIT_CPU 24
  SetEnv RLIMIT_NPROC 64
  SetEnv RLIMIT_AS 33554432
  SetEnv RLIMIT_AS 104857600
  SetEnv RLIMIT_NOFILE 200
  SetEnv PHP5RC /usr/local/pd-admin2/lib/php5_local.ini


Wenn ich dann die Seite
Code:
http://ipadresse/Microsoft-Server-ActiveSync/
aufrufe, kommt folgende Fehlermeldung:

Code:
Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, [no address given] and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.

Im error.log des Apachen erscheint dies:

[Tue Nov 25 16:39:23 2008] [error] [client 217.14.122.234] Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace.


Anscheinend habe ich da eine Endlosschleife produziert, die sich immer wieder gegenseitig aufrufen will. Ich sehe nur nicht wo. Hat de evtl. noch wer eine Idee?

Gruß NIxdorf
 
Status
Not open for further replies.
Back
Top