htaccess伪造目录路径?

时间:2015-04-08 21:45:59

标签: .htaccess path

我想用.htaccess假冒目录路径,但我没有多少经验,所以我问你们,伙计们。

假设我的网址是http://example.com/test,我在该文件夹中找到了一些脚本。我想隐藏网址,因此我无法通过它的真实网址进行访问,但我可以通过以下网址访问它: http://example.com/test2

我只是想隐藏并伪造目录。

1 个答案:

答案 0 :(得分:2)

要使用密码保护页面,您可以将以下内容添加到要保护的页面上的.htaccess中:

AuthType Basic
AuthName "Password Protected Area"
AuthUserFile /path/to/.htpasswd <-- change this to your full path to .htpasswd
Require valid-user

然后创建.htpasswd文件,并创建用户/密码组合。像这样:

test:dGRkPurkuWmW2

可在此页面上找到说明:

http://www.htaccesstools.com/articles/password-protection/

使用像这样的密码生成器生成加密密码:

http://www.htaccesstools.com/htpasswd-generator/