0

when I am using img tag to show the images, I am using ../images/1.jpg address therefore when users have a look at the source code may easily change the address to /images and see all the pictures. What should I do? or which type of formatting should I use to avoid this, so they do not find the name or actual address of the pictures folder.

 www.example.com/images/1.jpg
4

2 に答える 2

1

httpd.conf でディレクトリ リストをオフにし、images ディレクトリに index.html という空のファイルを作成します。

また、イメージに推測可能な名前を付ける代わりに、イメージ ID を秘密の文字列と連結し、ハッシュ アルゴリズムを使用することもできます。

于 2013-02-10T22:49:01.897 に答える
0

上記のように、ディレクトリのリストを拒否するか、パラメータに基づいて JSP ページから提供して、必要なイメージを識別します。

于 2013-02-10T22:48:51.787 に答える