GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   If you laugh at this you are going to hell (https://gfy.com/showthread.php?t=1054165)

tabasco 01-19-2012 04:04 PM

If you laugh at this you are going to hell
 
http://www.bigbootyheaven.com/Pics/Yk9oe.jpg

DudeRick 01-19-2012 05:27 PM

:1orglaugh:1orglaugh:1orglaugh oops...

suesheboy 01-19-2012 05:45 PM

OMG. She is still hot though rough on the edges..

Dirty F 01-19-2012 05:47 PM

Fuck, i laughed...still am :(

Rothstein 01-19-2012 05:51 PM

She's still pretty.

RyuLion 01-19-2012 06:00 PM

She's a hottie!!

nikki99 01-19-2012 06:11 PM

I didnīt, why all these michael J fox threads lately?

Supz 01-19-2012 06:36 PM

get your damn hands off her

pornmasta 01-19-2012 06:39 PM

honnestly i don't think it is very funny...

raymor 01-19-2012 06:41 PM

If you redirect everyone on a mobile device to your 404 page you're going to traffic hell.

lagcam 01-19-2012 06:45 PM

She was such a babe when she was younger.

tabasco 01-19-2012 07:52 PM

Quote:

Originally Posted by raymor (Post 18699343)
If you redirect everyone on a mobile device to your 404 page you're going to traffic hell.

It's not intentional. I'm not good with these things. What do I need to change to allow mobile access?

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{THE_REQUEST} ^[^/]*/index\.php [NC]
RewriteRule . / [R=301,L]
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?bigbootyheaven.com [NC]
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?images.google.com [NC]
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?google.com [NC]
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?search\?q=cache [NC]
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?gofuckyourself.com [NC]
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?gfy.com [NC]
RewriteRule \.(jpg|jpeg|png|gif|avi|wmv|mpg|mpeg)$ - [NC,F,L]
</IfModule>

RyuLion 01-19-2012 08:01 PM

Quote:

Originally Posted by tabasco (Post 18699498)
It's not intentional. I'm not good with these things. What do I need to change to allow mobile access?

Thanks for that code man! :thumbsup

ArsewithClass 01-19-2012 09:41 PM

Quote:

Originally Posted by raymor (Post 18699343)
If you redirect everyone on a mobile device to your 404 page you're going to traffic hell.

How do you mean?


@the thread, I see what you did there, hmmm Michael J Fox, not really funny, but the photo shop is good :pimp

raymor 01-19-2012 11:04 PM

Quote:

Originally Posted by tabasco (Post 18699498)
It's not intentional. I'm not good with these things. What do I need to change to allow mobile access?

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{THE_REQUEST} ^[^/]*/index\.php [NC]
RewriteRule . / [R=301,L]
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?bigbootyheaven.com [NC]
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?images.google.com [NC]
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?google.com [NC]
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?search\?q=cache [NC]
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?gofuckyourself.com [NC]
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?gfy.com [NC]
RewriteRule \.(jpg|jpeg|png|gif|avi|wmv|mpg|mpeg)$ - [NC,F,L]
</IfModule>

Hey cool you heard me that time. I've bitched about your last 746 posts. :)

You allowed www.gfy.com and gfy.com, but not m.gfy.com. You COULD just add m.gfy.com, but eventually that gets tiring, switching webtv.site.com for m.site.com, what about members.site.com, etc. Simpler is to replace:

(www\.)

with:
([a-z0-9]+\.)

Additionally that allows for typos like wwww. or mirrors like www1. and www2.

To take it up another notch, replace:

(www\.)?

with:
([a-z0-9]+\.)*

That allows for multiple parts like www.m., m.www., etc.

brassmonkey 01-19-2012 11:07 PM

not funny at all

raymor 01-19-2012 11:22 PM

Btw tabasco, it's my fault. A couple of other guys and I worked out the (www\.) code in 1998 and posted it to TLA's board and on my site, where the SEs loved it. From there, it made it's way to a popular mainstream tech site and then it became the de facto standard. So your .htaccess redirected me only because that's the way I wrote it thirteen years ago. I did it to myself.

(I can recognize my lineage for sure due to details like http(s)?. The (s)? had never been included before I posted that revision on TLA's.)

tabasco 01-20-2012 03:13 PM

Thanks raymor, should be good now.

cherrylula 01-20-2012 05:46 PM

Quote:

Originally Posted by raymor (Post 18699748)
Btw tabasco, it's my fault. A couple of other guys and I worked out the (www\.) code in 1998 and posted it to TLA's board and on my site, where the SEs loved it. From there, it made it's way to a popular mainstream tech site and then it became the de facto standard. So your .htaccess redirected me only because that's the way I wrote it thirteen years ago. I did it to myself.

(I can recognize my lineage for sure due to details like http(s)?. The (s)? had never been included before I posted that revision on TLA's.)

nice! sad how those who really shaped the internet get no credit, huh? :Oh crap :)

raymor 01-20-2012 06:06 PM

Quote:

Originally Posted by tabasco (Post 18701224)
Thanks raymor, should be good now.

Thanks, looks good. Now I can see all of your pics. (I do gfy only on my phone; the computer is for real work.)

John-ACWM 01-22-2012 08:49 AM

So going to hell.


All times are GMT -7. The time now is 01:52 AM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123