Doing this I get maximum rewrites exceeded.
I know what the problem is, but I don't know how to fix it.
I need a RewriteCond that checks if the sub-subdomain is allready appended to the url. So the rewriting needs to stop if the rewritten URL is "shop.samy.newkilu.de/shop". But right now /shop is appended 10 times until the maximum redirects is exceeded...

How can I do this?

Joshua Slive schrieb:
On 8/6/07, Samuel Vogel <[EMAIL PROTECTED]> wrote:
Hey, this is my best guess:

RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.
RewriteCond %{HTTP_HOST} ^([^.]+)\.samy\.newkilu\.de
RewriteRule ^/(.*)$  %1/$1 [L]

But somehow this doesn't do anything... What am I doing wrong?
I'm trying to rewrite "sub-sub"-domains to the appropriate folder.

Where are you placing this in the config? If it is in an .htaccess
file, then you need to drop the leading slash from the pattern in the
RewriteRule.

Joshua.

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to