Links in my site have been hacked
- by Funky
In my site I prefix the images and links with the domain of the site for better SEO using the code below:
public static string GetHTTPHost()
{
string host = "";
if (HttpContext.Current.Request["HTTP_HOST"] != null)
host = HttpContext.Current.Request["HTTP_HOST"];
if (host ==…