• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

How to redirect specific url?

RelaxTheMind

Platinum Member
My goal is to point one specific website address to another. not a dns thing.

when people are connected to my wifi i want it when www.website.com/pics/face.jpg is accessed it redirects and loads to www.photobucket.com/stuff/here/anotherface.jpg instead.

everything im finding on searches is dns and hotspot type stuff which wont accomplish what i am trying to do.

the only thing that i can come up with is redirecting the a whole domain another host i have and have it soley linking a specific folder or file.
 
If you are really wanting to return a HTTP 301/307 redirect when a specific URL is requested you are going to need some sort of an application layer firewall.

You need to be able to inspect the outgoing HTTP requests in real time and return HTTP 301/307 redirects when you detect a GET request for a specific resource while not passing on the original request.

Depending on the scale of the network, a Squid proxy server setup as a transparent proxy would most likely work just fine and is probably what I would use for a basic implementation.
 
Back
Top