Guest_imported
New member
- Jan 1, 1970
- 0
I have had some trouble with my ISP blocking port 80 requests (incoming trafic). In fact they are blocking all incoming traffic on port 80 to all their customers, which means i cant continue to host websites on the default port, and host them by just their domain (ie: itsnotbutter.org...now i have to do itsnotbutter.org:8080)
So i searched around and found out about this method with the rewrite module in apache, and how u can use an external HTTP redirect for my domain/s..(my goal is to have people request itsnotbutter.org but actually be requesting itsnotbutter.org:8080)
i took apaches configuration straight from the rewrite module section of their website, and edited it a little to make it work with my domain, however i cannot seem to do so...Maybe one of you can help me out with this, here is the default module "script" from the apache site..(
RewriteCond %{HTTP_HOST} !^fully\.qualified\.domain\.name[NC]
RewriteCond %{HTTP_HOST} !^$
RewriteCond %{SERVER_PORT} !^80$
RewriteRule ^/(.*) [L,R]
RewriteCond %{HTTP_HOST} !^fully\.qualified\.domain\.name [NC]
RewriteCond %{HTTP_HOST} !^$
RewriteRule ^/(.*) [L,R]
(all lines should start with Rewrite..if they dont that means it didnt fit on the line in this forums cgi box input thing)
So i searched around and found out about this method with the rewrite module in apache, and how u can use an external HTTP redirect for my domain/s..(my goal is to have people request itsnotbutter.org but actually be requesting itsnotbutter.org:8080)
i took apaches configuration straight from the rewrite module section of their website, and edited it a little to make it work with my domain, however i cannot seem to do so...Maybe one of you can help me out with this, here is the default module "script" from the apache site..(
RewriteCond %{HTTP_HOST} !^fully\.qualified\.domain\.name[NC]
RewriteCond %{HTTP_HOST} !^$
RewriteCond %{SERVER_PORT} !^80$
RewriteRule ^/(.*) [L,R]
RewriteCond %{HTTP_HOST} !^fully\.qualified\.domain\.name [NC]
RewriteCond %{HTTP_HOST} !^$
RewriteRule ^/(.*) [L,R]
(all lines should start with Rewrite..if they dont that means it didnt fit on the line in this forums cgi box input thing)