加密的.txt文件

问题描述 投票:1回答:2

我有一个正确的加密文件。但是当我尝试添加到文件夹时,文件显示为未配置。我能做什么?

正确的文字:

enter image description here

错误的文本当我尝试上传到用于解密的站点时:

enter image description here

javascript php html browser page-refresh
2个回答
1
投票

你可以试试这个。

echo '<META HTTP-EQUIV="Refresh" Content="0; URL='.$location.'">';

0
投票

PHP(必须工作,无论浏览器版本/无脚本等):

header("Location: http://example.com/myOtherPage.php");
die();

JS(如​​果用户使用无脚本或IE,则无效。阅读更多:https://appendto.com/2016/04/javascript-redirect-how-to-redirect-a-web-page-with-javascript/):

window.location.href = "https://www.example.com";
© www.soinside.com 2019 - 2024. All rights reserved.