htaccess重写为安全文件夹路径

时间:2013-08-10 05:35:04

标签: security .htaccess url-rewriting rewrite subdirectory

我在一个文件夹中有一个应用程序,我想保持隐藏状态。相反,我希望能够从秘密路径访问该文件夹,例如:

当前路径:example.com/myfolder

将路径更改为myfolder.example.com

当有人访问example.com/myfolder时,我只是希望它返回找不到的页面。

然后我想让新路径只能从我的IP访问。尝试了各种方法但没有成功。任何建议/例子都将不胜感激。

提前致谢。

1 个答案:

答案 0 :(得分:0)

1你可以使用htaccess隐藏你的floder,把这个代码放在文件夹里(你要隐藏的文件夹),允许来自你的ip

Order deny,allow
Deny from all
Allow from 127.0.0.1 (your ip)

第二次使用htaccess设置密码

AuthName "Private zone"
AuthType Basic
AuthUserFile /pub/home/your_login/.htpasswd
require valid-user

.htpasswd (make anther file for pw)
your username:your password

第三 www.example.com/myfolder->www.myfolder.example.com something.example.com这是子域

它将成为

public_html/all your files and floder
something/others files

阅读本文将有所帮助 http://www.htpasswdgenerator.com/apache/htaccess.html