So I would likte to redirect this url:
http://subdomain.domain.com/subfolder/subsubfolder/

to:
http://www.domain.com/subfolder/subsubfolder/?parameter=subdomain

And also using other, more, less or no subfolders.

I found this, but it doesn't seem to work with subfolders:

RewriteCond %{HTTP_HOST} !^www.domain.com$ [NC]
RewriteCond %{HTTP_HOST} ^([^.]+).domain.com$ [NC]
RewriteRule ^/(.*)$ http://www.domain.com/?parameter=%1 [L,R=301]

link|improve this question
feedback

1 Answer

RewriteEngine on
RewriteCond %{HTTP_HOST} ^example\.org
RewriteRule ^(.*)$ http://www.example.org/?parameter=$1 [R=permanent,L]
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.