Hi there theremotedr,
your link..
https://www.theremotedoctor.co.uk/m-...ilref/?C=D;O=A
...actually points to a directory, not a page, and worse still,
gives a visitor access to all of its contents.
I would cure that by placing an
index.html file in all
directories of a similar nature.
Here is an example on my site...
https://coothead.co.uk/images/
A very quick look at your site shows these unprotected
directories...
- m-images
- emailref
- css
- js
- favicon-logo
Here is the code for an
index.html file that you could use
to protect your vulnerable directories...
Code:
<!DOCTYPE HTML>
<html lang="en">
<head>
<base href="https://www.theremotedoctor.co.uk/">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,height=device-height,initial-scale=1">
<title>No peeping</title>
<link rel="shortcut icon" href="favicon-logo/favicon.ico" type="image/x-icon" >
<link rel="stylesheet" href="css/latestChanges.css" media="screen">
</head>
<body>
<h1>Hi there peeper !!</h1>
<div>
<p>I know that you are just being inquisitive but I would</p>
<p>rather not let you view the contents of this directory.</p>
</div>
</body>
</html>
Just change the wording to suit and add styling to your
latestChanges.css file.
As for your Google problem, you have not defined the
offending page(s).
coothead
Bookmarks