gpt4 book ai didi

php - htaccess : Redirect file. php到file.html,同时阻止直接访问file.php

转载 作者:搜寻专家 更新时间:2023-10-31 22:15:51 24 4
gpt4 key购买 nike

我想使用 .htaccess 重写将 url help.html 重定向到 help.php(内部),但与此同时,我想给出 404 错误消息如果有人试图直接访问 help.php

我看了很多教程,也回答了很多问题,但没有一个是针对这个特定问题的。

这可能吗?

编辑:对于从外部查看 url 的人,他只会看到 help.html 存在,而不是 help.php(即使在内部只存在 help.php,但不存在 help.html):)

最佳答案

<Files help.php>
order allow,deny
Allow from 127.0.0.1
deny from all
</Files>
RewriteEngine On
RewriteRule help.html$ help.php [L]

你可能想添加
AddType application/x-httpd-php .html
使 PHP 执行现在显示为 HTML/TEXT。

编辑:您可以通过添加此 ErrorDocument 403 404.php 并在该页面中放置 404 错误 HTML 代码来给出 404 错误(因为此 htaccess 将给出 403 错误)

关于php - htaccess : Redirect file. php到file.html,同时阻止直接访问file.php,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6454140/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com