I am writing a web application using Codeigniter for a client and am using one of their internal development machines. Due to security restrictions the web server port is only internal and not exposed to the outside world so I must access it over a SSH tunnel. So I hit the web server like this: http://localhost/path_to_data.
I am creating a form in Codeigniter using the standard Form Helper, the only problem is that the form's action is pointed at the location of the box from the Codeigniter config file. I cannot change this config value because we have internal developers that access this as well that won't use a SSH tunnel so they hit it by the "real" URL.
Is there a way to force Codeigniter to use the form to point at itself with a relative path instead of the full path?