Links pointing to internal server address

Permalink
Hello

Trying to build a study website its athttp://www.kickassconfigs.com

I have a web server running on windows 2012 and have configured my ASA firewall to accept HTTP (port80) to 192.168.1.36 (my internal web server). There is also static NAT taking place which is all working fine.

When browsing the site locally on the PC it works fine all the links point to the correct place etc. However when browsing the website over the internet the menu bar is working but the links within those pages don't.

If you follow the website above you will see what I mean.

Thanks for reading

James

 
firewire2013 replied on at Permalink Reply
Well thought I may as well update this post seen as no-one else replied, might be of use to someone.

It turned out the be the something wrong with the URL code
This is what it used to be....({ } removed for this post)
<p><a href="http://CCM:BASE_URL /index.php/gns3/setting-up-cisco-routers/">Setting up Cisco routers</a></p>

Then I changed them to.....
<p><a href="http://192.168.1.36/index.php?cID=148">Setting up Cisco routers</a></p>
Now they are working over the internet.

Its kind of strange because when you look at the source code over the web the links translate to....
<p><a href="/index.php/gns3/setting-up-cisco-routers/">Setting up Cisco routers</a></p>

If anyone could explain that would the grand!!