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)
-   -   .htaccess question for redirecting... (https://gfy.com/showthread.php?t=512538)

whoababesnet 09-04-2005 09:09 PM

.htaccess question for redirecting...
 
Hi,,

hope to get my answer here.


i want to redirected a specific incoming domain by using this code in htaccess:

RewriteEngine on
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?other-domain.com/.*$ [NC]
RewriteRule .* http://mydomain.com/to-another-page.html [R,L]


the problem is that the .htaccess keep loading this rules and the incoming visitor from other-domain.com never see the page...

if you can help... thank you ..

pr0 09-04-2005 09:11 PM

RewriteEngine on
RewriteCond %{HTTP_HOST} ^fart.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.fart.com$
RewriteRule ^(.*)$ http://www.bukkake.com [R=301,L]

pr0 09-04-2005 09:12 PM

ahhh i didn't read you need to read the referer.....no clue how to do that, be interested to find out though

whoababesnet 09-04-2005 09:22 PM

yes... the referer domain must be sent to a different page...

the big problem is that the .htaccess file just load&load&load...

vending_machine 09-04-2005 09:31 PM

Sounds like the referrer still lives after your redirect, so you will need to either restrict your RewriteRule (by using something other than .*) or add another RewriteCond to stop the rewrite when the page it's redirected to is hit.

whoababesnet 09-04-2005 09:34 PM

Yeah..Vending machine...

that's exactly what i would like to do : stoping the rewrite when it's redirected..

but how ?

vending_machine 09-04-2005 09:40 PM

Try:
Code:

RewriteRule !^/to-another-page.html /to-another-page.html [R,L]
.. or add this before the final rule:
Code:

RewriteCond %{REQUEST_URI} !^/to-another-page.html

whoababesnet 09-04-2005 10:13 PM

i've tried both... but it doesn't work...


All times are GMT -7. The time now is 01:11 PM.

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