1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

rewrite subdomain to directory

Discussion in 'Apache' started by blinkiz, Jul 20, 2005.

  1. #1
    It's silly. It exist millions of example of mod_rewrite, but I can't get one easy one to function :eek:

    I want to redirect
    filer.mydomain.com
    to the catalog
    /manager/homes
    on the domain mydomain.com
    If possible, it should be invisible to the user. User is still on filer.mydomain.com

    This dosn't work:
    
    RewriteEngine On
    RewriteCond %{HTTP_HOST}   ^filer.mydomain.com [NC]      
    RewriteCond %{REQUEST_URI} !^/manager/homes/.*
    RewriteRule   ^(.*)  /manager/homes/$1  [L]
    
    Code (markup):
    And this doesn't work:
    RewriteEngine on                
    RewriteCond %{HTTP_HOST} ^filer.mydomain.com$ [OR]
    RewriteCond %{HTTP_HOST} ^www.filer.mydomain.com$  
    RewriteRule ^(.*)$ http://www.mydomain.com/manager/homes [R=301,L]
    
    Code (markup):
    So I think it some kind of trouble with my ISP/webbhosting company. Am using apache 1.3.33, mod_rewrite and cPanel/WHM. Tested with IE6 and Firefox. .htaccess file is located at /home/username/.htaccess
     
    blinkiz, Jul 20, 2005 IP
  2. blinkiz

    blinkiz Peon

    Messages:
    2
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    This has been solved by using another metod.

    Using ssh box in shell and typing:
    
    ln -s /home/username/public_html/manager/homes /home/username/public_html/filer
    
    Code (markup):
    subdomain filer.mydomain.com created in cPanel.
     
    blinkiz, Jul 20, 2005 IP