2011-12-23 62 views
0

如果虛擬主機的目錄不存在,是否可以重定向到某個URL?我在下面有一個VirtualHost設置,只需創建文件夾並將DNS指向我的服務器即可託管域。使用Apache重定向不存在的動態虛擬主機文件夾

這裏是我的虛擬主機

<VirtualHost *:80> 
     ServerAdmin [email protected] 

     RewriteEngine On 
     RewriteCond %{HTTP_HOST} ^www\.(.*) [NC] 
     RewriteRule ^(.*) http://%1/ [R=301,L] 

     VirtualDocumentRoot /var/www/%0 
     <Directory /var/www/%0> 
       Options Indexes FollowSymLinks MultiViews 
       AllowOverride None 
       Order allow,deny 
       allow from all 
     </Directory> 

     ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/ 
     <Directory "/usr/lib/cgi-bin"> 
       AllowOverride None 
       Options ExecCGI -MultiViews +SymLinksIfOwnerMatch 
       Order allow,deny 
       Allow from all 
     </Directory> 

     ErrorLog /var/log/apache2/error.log 

     # Possible values include: debug, info, notice, warn, error, crit, 
     # alert, emerg. 
     LogLevel warn 

     CustomLog /var/log/apache2/access.log combined 
     ServerSignature On 

    Alias /doc/ "/usr/share/doc/" 
    <Directory "/usr/share/doc/"> 
     Options Indexes MultiViews FollowSymLinks 
     AllowOverride None 
     Order deny,allow 
     Deny from all 
     Allow from 127.0.0.0/255.0.0.0 ::1/128 
    </Directory> 
</VirtualHost> 

回答

1

可以使用重寫規則進行管理配置。

你重寫規則跳過WWW剛過:

RewriteCond %{HTTP_HOST} ^(.*)$ 
RewriteCond /var/www/%1 !-d 
# I think just /var/www/%{HTTP_HOST} works :| 
RewriteRule .* http://example.com/nonexistant.php/$0 [L,R]