Go Back   CodingForums.com > :: Server side development > Other server side languages/ issues

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 02-22-2003, 08:32 PM   PM User | #1
MLReynolds
New to the CF scene

 
Join Date: Feb 2003
Posts: 9
Thanks: 0
Thanked 0 Times in 0 Posts
MLReynolds is an unknown quantity at this point
.htacces and alternate image

I included the following line in my .htaccess file;

RewriteRule \.(gif|jpg)$ http://www.michaelsplace.us/noimage.jpg [R,L]

but the alternate image does not display. Although I stopped the hot links, I'm wondering why the "noimage.jpg" is not displayed. Is there something I'm overlooking?

Any thoughts would be appreciated.
__________________
MLReynolds
MLReynolds is offline   Reply With Quote
Old 03-05-2003, 09:54 AM   PM User | #2
g00fy
New Coder

 
Join Date: Jan 2003
Posts: 60
Thanks: 0
Thanked 0 Times in 0 Posts
g00fy is an unknown quantity at this point
do you have a RewriteCond %{HTTP_REFERER} <URL of page accessing your domain> ?

my understanding is that the RewriteCond directive states that if the {HTTP_REFERER} matches the URL that follows, then use the RewriteRule directive.
The RewriteRule directive will redirect any reference back to the referring web page.


does this help or do you already have a RewriteCond ?

this works fine for me


HTH


g00fy
g00fy is offline   Reply With Quote
Old 03-07-2003, 01:37 AM   PM User | #3
MLReynolds
New to the CF scene

 
Join Date: Feb 2003
Posts: 9
Thanks: 0
Thanked 0 Times in 0 Posts
MLReynolds is an unknown quantity at this point
Reply

Thank you for your response. Yes, I have that condition. The entire script reads;

Options +FollowSymlinks
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://michaelsplace.us.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.michaelsplace.us.*$ [NC]
RewriteRule .*\.(gif|jpg|jpeg|bmp)$ http://www.michaelsplace.us/noimage.jpg [R,NC]

But still, no image is displayed.

Michael
__________________
MLReynolds

Last edited by MLReynolds; 03-07-2003 at 01:42 AM..
MLReynolds is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 03:20 PM.


Advertisement
Log in to turn off these ads.