This commit is contained in:
Felipe M 2024-03-13 18:47:00 +01:00
parent 9197dd2371
commit d2a74a7a4e
11 changed files with 314 additions and 0 deletions

1
testsite/found.html Normal file
View file

@ -0,0 +1 @@
found

23
testsite/index.html Normal file
View file

@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<a href="/found.html">found.html</a> <br>
<a href="/not_found.html">not_found.html</a> <br>
<a href="/rel/index.html">rel.html</a>
<a href="https://fmartingr.com">External link (ok)</a> <br>
<a href="http://fmartingr.com">External link (ok - http redir)</a> <br>
<a href="https://www.e3H7iaV685rbH7R5lBNxgpietP7JTnMeknmi9SNAEUT4XSiH2sET6ixAcjhy4CAi.com">External link (nack)</a>
<br>
<script src="/static/script.js" type="text/javascript"></script>
</body>
</html>

0
testsite/rel/image.jpg Normal file
View file

22
testsite/rel/index.html Normal file
View file

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<a href="./relfound.html">found.html</a> <br>
<a href="./rel_not_found.html">not_found.html</a> <br>
<img src="./image.jpg"> <br>
<img src="./image-404.jpg"> <br>
<img src="./e3H7iaV685rbH7R5lBNxgpietP7JTnMeknmi9SNAEUT4XSiH2sET6ixAcjhy4CAi"> <br>
<br>
<script src="/static/script.js" type="text/javascript"></script>
</body>
</html>

View file

@ -0,0 +1 @@
found

View file

View file