Originally Posted by
Redrobes
Yeah I am thinking maybe the issue is that I am hosting it on 8080 cos I run an internet web server for myself too. Maybe I should host it on 80 like a normal web server so that I can drop the :8080 bit of the url and then maybe everyones firewalls and internet connections wont think its too bizarre.
If you are using apache, you can use mod-rewrite to map a url to the other port. Something like this should work (untested):
Code:
Options +Indexes +FollowSymLinks
RewriteEngine On
RewriteCond %{THE_REQUEST} ^[a-z]{3,9}\ /mycooldemo\.html\ HTTP/ [NC]
RewriteRule ^.*mycooldemo\.html$ http://82.32.151.149:8080/ [R=301,L]
and should redirect connections like
Code:
http://82.32.151.149/mycooldemo.html?x=1444771&y=3376670.4&z=100&s=512
to
Code:
http://82.32.151.149:8080/?x=1444771&y=3376670.4&z=100&s=512
-Rob A>