hi...
i wrote configuration files.
test.com.conf
----------------------------
server_name test.com www.test.com;
static.conf
---------------------------
server_name static.*;
ape.conf
-----------------------
server_name "~&(\d{1,3}+)\.ape\.*$;
http://test.com and http://www.test.com -> test.com OK.
http://static.test.com -> static.test.com OK
http://1.ape.test.com -> 1.ape.test.com OK
by the way,
when i try to access to http://abc.test.com,it will -> ape.test.com;
but..i wanna access http://test.com via http://*.test.com except ape,static and etc.
how can i do it?
and ape.conf
----------------------------------
server_name *.ape.*;
is fail. can not wildcard?
Regards thank.