y*********d 发帖数: 1013 | 1 I want to protect my personal homepage by password. The homepage can be
visited only if visitors input a correct password. I wonder how I can
realize that in Dreamweaver?
Thank you. |
l*****a 发帖数: 166 | 2 可以吗?好像不行吧。要在server端设置?
【在 y*********d 的大作中提到】 : I want to protect my personal homepage by password. The homepage can be : visited only if visitors input a correct password. I wonder how I can : realize that in Dreamweaver? : Thank you.
|
c***c 发帖数: 21374 | 3 dreamweaver做不了
要服务器端编程
【在 y*********d 的大作中提到】 : I want to protect my personal homepage by password. The homepage can be : visited only if visitors input a correct password. I wonder how I can : realize that in Dreamweaver? : Thank you.
|
y*********d 发帖数: 1013 | 4 服务器端编程怎么做?
【在 c***c 的大作中提到】 : dreamweaver做不了 : 要服务器端编程
|
c***c 发帖数: 21374 | 5 问题太泛
自己搜索
自己学习
【在 y*********d 的大作中提到】 : 服务器端编程怎么做?
|
l*******9 发帖数: 177 | 6 There is one damn easy way to do this, as long as you can control
your httpd.conf or .htaccess, add just four lines:
AuthType basic
AuthName "pswd protect region"
AuthUserFile /path/to/htpswd
Require valid-user
in /path/to/my_protected_dir/.htaccess or in
....
of your httpd.conf....then in your shell, type
htpasswd -c /path/to/htpswd yellowchild
to generate username-password pairs...
This is by far the easiest way to fit your needs..
Other way
【在 y*********d 的大作中提到】 : I want to protect my personal homepage by password. The homepage can be : visited only if visitors input a correct password. I wonder how I can : realize that in Dreamweaver? : Thank you.
|