Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 06-12-2005, 10:06 PM   #1
pr0
rockin tha trailerpark
 
pr0's Avatar
 
Industry Role:
Join Date: May 2001
Location: ~Coastal~
Posts: 23,088
Tech question for server guys (re: htaccess)

Ok i've got some pages setup like this


RewriteEngine on
RewriteCond %{HTTP_HOST} ^domain.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.domain.com$
RewriteRule ^(.*)$ http://www.adultactioncam.com/?r=aac...=geolist&geo=1 [R=301,L]

Now my question is....can a pop-up be added into this code, so when they load & get redirected, it pops up?
pr0 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-12-2005, 10:09 PM   #2
nofx
Too lazy to set a custom title
 
Join Date: Nov 2002
Location: Virgin Mary's womb
Posts: 16,826
another htaccess question

why isnt this working ? does it need to go in a certain spot in .htaccess or it doesnt matter...?

RewriteEngine On
RewriteCond %{HTTP_REFERER} .mil
RewriteCond %{HTTP_REFERER} .gov
RewriteCond %{HTTP_REFERER} .edu
RewriteRule /* http://www.yahoo.com [R,L]
__________________

Often times I wonder why
There's love and hate, theres live or die.
When sickness comes I must decide:
When feelings go, theres suicide.
nofx is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-12-2005, 10:20 PM   #3
broke
Confirmed User
 
Join Date: Aug 2003
Location: Someplace Windy
Posts: 4,501
Quote:
Originally Posted by pr0
Now my question is....can a pop-up be added into this code, so when they load & get redirected, it pops up?
No.

You would need to Rewrite to a landing page on your site that pops the window and then redirects to AAC.
__________________
Perfect Gonzo
broke is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-12-2005, 10:29 PM   #4
pr0
rockin tha trailerpark
 
pr0's Avatar
 
Industry Role:
Join Date: May 2001
Location: ~Coastal~
Posts: 23,088
Quote:
Originally Posted by broke
No.

You would need to Rewrite to a landing page on your site that pops the window and then redirects to AAC.
hmmm im looking to pop a popper to another site, but i feel ya
pr0 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-12-2005, 10:48 PM   #5
AgentCash
Confirmed User
 
Join Date: Feb 2002
Posts: 720
Quote:
Originally Posted by nofx
another htaccess question

why isnt this working ? does it need to go in a certain spot in .htaccess or it doesnt matter...?

RewriteEngine On
RewriteCond %{HTTP_REFERER} .mil
RewriteCond %{HTTP_REFERER} .gov
RewriteCond %{HTTP_REFERER} .edu
RewriteRule /* http://www.yahoo.com [R,L]

Try

RewriteEngine On
RewriteCond %{REMOTE_HOST} .*\.mil$ [NC,OR]
RewriteCond %{REMOTE_HOST} .*\.gov$ [NC,OR]
RewriteCond %{REMOTE_HOST} .*\.edu$ [NC,OR]
RewriteCond %{HTTP_REFERER} .*\.mil$ [NC,OR]
RewriteCond %{HTTP_REFERER} .*\.mil/.* [NC,OR]
RewriteCond %{HTTP_REFERER} .*\.gov$ [NC,OR]
RewriteCond %{HTTP_REFERER} .*\.gov/.* [NC,OR]
RewriteCond %{HTTP_REFERER} .*\.edu$ [NC,OR]
RewriteCond %{HTTP_REFERER} .*\.edu/.*
RewriteRule .* http://www.yahoo.com [R,L]
AgentCash is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-12-2005, 10:52 PM   #6
nofx
Too lazy to set a custom title
 
Join Date: Nov 2002
Location: Virgin Mary's womb
Posts: 16,826
Quote:
Originally Posted by AgentCash
Try

RewriteEngine On
RewriteCond %{REMOTE_HOST} .*\.mil$ [NC,OR]
RewriteCond %{REMOTE_HOST} .*\.gov$ [NC,OR]
RewriteCond %{REMOTE_HOST} .*\.edu$ [NC,OR]
RewriteCond %{HTTP_REFERER} .*\.mil$ [NC,OR]
RewriteCond %{HTTP_REFERER} .*\.mil/.* [NC,OR]
RewriteCond %{HTTP_REFERER} .*\.gov$ [NC,OR]
RewriteCond %{HTTP_REFERER} .*\.gov/.* [NC,OR]
RewriteCond %{HTTP_REFERER} .*\.edu$ [NC,OR]
RewriteCond %{HTTP_REFERER} .*\.edu/.*
RewriteRule .* http://www.yahoo.com [R,L]

thanx man!

will try it out
__________________

Often times I wonder why
There's love and hate, theres live or die.
When sickness comes I must decide:
When feelings go, theres suicide.
nofx is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-12-2005, 11:19 PM   #7
pr0
rockin tha trailerpark
 
pr0's Avatar
 
Industry Role:
Join Date: May 2001
Location: ~Coastal~
Posts: 23,088
Quote:
Originally Posted by AgentCash
Try

RewriteEngine On
RewriteCond %{REMOTE_HOST} .*\.mil$ [NC,OR]
RewriteCond %{REMOTE_HOST} .*\.gov$ [NC,OR]
RewriteCond %{REMOTE_HOST} .*\.edu$ [NC,OR]
RewriteCond %{HTTP_REFERER} .*\.mil$ [NC,OR]
RewriteCond %{HTTP_REFERER} .*\.mil/.* [NC,OR]
RewriteCond %{HTTP_REFERER} .*\.gov$ [NC,OR]
RewriteCond %{HTTP_REFERER} .*\.gov/.* [NC,OR]
RewriteCond %{HTTP_REFERER} .*\.edu$ [NC,OR]
RewriteCond %{HTTP_REFERER} .*\.edu/.*
RewriteRule .* http://www.yahoo.com [R,L]
you forgot .us, alot of them use .us domains
pr0 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-12-2005, 11:27 PM   #8
JD
Too lazy to set a custom title
 
Industry Role:
Join Date: Sep 2003
Posts: 22,651
Quote:
Originally Posted by pr0
you forgot .us, alot of them use .us domains
them? who is this "them" you speak of? is it "Tha Man"?
JD is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-12-2005, 11:28 PM   #9
pr0
rockin tha trailerpark
 
pr0's Avatar
 
Industry Role:
Join Date: May 2001
Location: ~Coastal~
Posts: 23,088
Quote:
Originally Posted by SPeRMiNaToR
them? who is this "them" you speak of? is it "Tha Man"?

yea....alot of the vigilante net police hide behind .us's

i know from my logs over the last 4 years
pr0 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-12-2005, 11:30 PM   #10
nofx
Too lazy to set a custom title
 
Join Date: Nov 2002
Location: Virgin Mary's womb
Posts: 16,826
.us added

thanx pr0 ;]
__________________

Often times I wonder why
There's love and hate, theres live or die.
When sickness comes I must decide:
When feelings go, theres suicide.
nofx is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-12-2005, 11:32 PM   #11
pr0
rockin tha trailerpark
 
pr0's Avatar
 
Industry Role:
Join Date: May 2001
Location: ~Coastal~
Posts: 23,088
Quote:
Originally Posted by nofx
.us added

thanx pr0 ;]
np

back when i was like 15 i backdoored a u.s. from an aim chat room

it was named pedo.taskforce.oh.us

so i can only guess they use it for other purposes
pr0 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-12-2005, 11:36 PM   #12
darksoul
Confirmed User
 
darksoul's Avatar
 
Join Date: Apr 2002
Location: /root/
Posts: 4,997
Quote:
Originally Posted by AgentCash
Try

RewriteEngine On
RewriteCond %{REMOTE_HOST} .*\.mil$ [NC,OR]
RewriteCond %{REMOTE_HOST} .*\.gov$ [NC,OR]
RewriteCond %{REMOTE_HOST} .*\.edu$ [NC,OR]
This will only work if you have apache setup to resolve ips
which it doesn't do by default and I suggest you don't change it.
__________________
1337 5y54|)m1n: 157717888
BM-2cUBw4B2fgiYAfjkE7JvWaJMiUXD96n9tN
Cambooth
darksoul is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-13-2005, 12:40 AM   #13
Superterrorizer
Confirmed User
 
Join Date: Sep 2003
Posts: 509
Quote:
Originally Posted by pr0
np

back when i was like 15 i backdoored a u.s. from an aim chat room

it was named pedo.taskforce.oh.us

so i can only guess they use it for other purposes
You are an idiot.
Superterrorizer is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.