我们如何保护我们的资产网址

时间:2017-10-05 06:13:34

标签: php url

我想在网站上保护我的资产网址:

www.example.com/assets/image.jpg

我想要显示这样的网址:

www.example.com/asdie239487kjjsdfkwjh3erasdfjlkasdf

所以我需要一些无法追踪资产网址的东西。

1 个答案:

答案 0 :(得分:0)

你试试:

<?php

// query to database mabye?
$myPath = getImagePath($_GET['id']);

// what kind of image file is that?
$contentType = getContentType($myPath);

// read file content
$img = file_get_contents($myPath);

// here you tell the browser what kind of image is that e.g. jpeg,png,gif...
header("Content-Type: $contentType");

echo $img;

?>

您需要根据需要定义getImagePath和getContentType函数。