Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须在我的 Apache 服务器上隐藏我的 iOS 应用程序(确切地说是带有 app 和 .plist 的文件夹),并且我尝试了许可(750),但下载应用程序的链接不起作用:
<a href="itms-services://?action=download-manifest&url=http://example.com/prova/xxx.plist">Download App</a>
如何隐藏文件夹并同时允许下载应用程序?
如果您启用了 Apache 的索引模块(默认情况下),Apache 在浏览没有 index.html(或类似)文件的目录时会向您显示索引。
要禁用此行为,请将以下行添加到您的.htaccess文件中:
.htaccess
Options -Indexes
如果您还没有.htaccess文件,只需在要隐藏的目录中创建一个空白文件并添加该行。
如果您只想隐藏所有带有结尾的文件plist并app从索引中添加以下行到您的 .htaccess 中:
plist
app
IndexIgnore *.plist *.app