那么你需要的就是http server 的用户验证.
你用的是apache 还是IIS?他们的设置是不一样。
如果是Apache,那么有几种选择,Apache支持几种不同的模块,可以是把用户名和密码放在一个文本文件里,
也可以从数据库比如mysql去读。具体的,请看这篇文档:
http://httpd.apache.org/docs/mod/index-bytype.html
其中的如下部分:
Access Control
mod_access
Access control based on client hostname or IP address
mod_auth
User authen
tication using text files
mod_auth_dbm
User authen
tication using DBM files
mod_auth_db
User authen
tication using Berkeley DB files
mod_auth_anon Apache 1.1 and up
Anonymous user access to authen
ticated areas
mod_auth_digest Apache 1.3.8 and up
Experimental MD5 authen
tication
mod_digest Apache 1.1 and up
MD5 authen
tication
请按照你的需要阅读不同的部分。