我正在使用 WAMP 并在本地托管 PHP 文件。
假设我有这两个文件。
customer.php - 添加客户详细信息的表单
recordCustomer.php - 连接到数据库并将信息存储在数据库中(所有处理完成的地方)
如何通过在地址栏中键入文件名来阻止用户访问文件recordCustomer.php。
http://localhost/testing/recordCustomer.php has to be redirected and given an error message
然而
http://localhost/testing/customer.php is allowed
谢谢