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.
我想用 Heroku Scheduler 运行一个 php 文件。有哪些方法可以确保不只是任何人都可以来执行文件?有没有办法把东西放在 web 根目录(带有 php 应用程序的“www”)之上?
完成此操作的最简单方法是使用.htaccess项目根目录中的文件来确保无法通过 Apache 访问这些文件。调度程序仍然能够执行它们。
.htaccess
<Directory /app/www/DIRECTORY_NAME> Order Deny,Allow Deny from All </Directory>
作为DIRECTORY_NAME您放入这些 PHP 文件的名称。
DIRECTORY_NAME