我会使用托管进行实时测试,但我想保护访问并防止搜索引擎索引。例如(服务器目录结构)在 public_html 中:
_private
_bin
_cnf
_log
_ ...(更多默认目录托管)
testpublic
css
图像
index.html
我希望index.html 对所有人可见,所有其他目录(“testpublic”除外)都是隐藏,受保护的访问和搜索引擎不索引。
目录“testpublic”我希望它是公开的,但可能不会在搜索引擎中被索引,不确定这是否可能。
要了解我需要 2 个文件 .htaccess。
“public_html”中的一位通用和“testpublic”中的其他特定。
.htaccess general (public_html) 我认为它应该是这样的:
AuthUserFile /home/folder../.htpasswd
AuthName "test!"
AuthType Basic
需要用户 admin123
< FilesMatch "index.html">
满足任何
</ FilesMatch>
谁能帮我创建具有适当属性的文件?谢谢!