rewrite rule working but no images

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
User avatar
gurjit
Forum Contributor
Posts: 314
Joined: Thu May 15, 2003 11:53 am
Location: UK

rewrite rule working but no images

Post by gurjit »

I managed to get my rewrite rule working and create a fake folder structure

the problem is when it goes to this page it does not load the images - any ideas????

heres my rewrite rule

Code: Select all

 
Options +FollowSymLinks
 
RewriteBase /
 
RewriteEngine on
 
RewriteRule !.(html)$ - [S=1]
 
RewriteRule ^estate-agents/uk/england/london/south-west-london/putney/(.*?).html$ /search/index.php?type=$1 [L,NC]
 
 
WebbieDave
Forum Contributor
Posts: 213
Joined: Sun Jul 15, 2007 7:07 am

Re: rewrite rule working but no images

Post by WebbieDave »

You'll want to post this question at one of the many fine Apache forums out there :)
Post Reply