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.
我正在运行一个网络服务器,我在其中放置了一个 .php 文件来访问 mysql 数据库。现在我不想公开查看这个 .php 文件,我将 .htaccess 放在包含文件夹中。
现在我想在它不起作用的 URL 中传递帐户名和密码。
HttpPost post = new HttpPost("http://accname:password@server.com/admin/myfile.php");
但是当我从浏览器中调用 url 时,它确实有效。我很迷茫 - 我做错了什么吗?