2011-08-07 17 views
0

私はadmin/mgmt/restとして分類されるイントラネットを持っています。 URLはintranet.comです。管理のために、イントラネットはintranet.com/erwになります。これは3文字を超えません。特定のURLにリダイレクトするには、.htaccessの3文字を使用します。私は理解している場合.htaccess URLに制限文字をリダイレクト

RewriteCond %{HTTP_HOST} ([0-9][a-z]) [NC] <--want a limit of 3 characters only 
RewriteRule (.*)$ http://intranet.com/tek 

答えて

0

は私はわからない

# match all intranet 1-3 length domains 
RewriteCond %{HTTP_HOST} ^([0-9a-z]{1-3})$ [NC] 
# redirect to url with domain name 
RewriteRule (.*)$ http://intranet.com/%1 
関連する問題