Hi,
How do I write a rewrite rule for the following condition.
- I have my directory setup as /root/projectname/trunk/www/
I've setup site.local in hosts file to point to /root/
- How do I make this request http://site.local/projectname to grab data from /root/project_name/trunk/www/ instead of from /root/projectname/ ?
Right now I have it as RewriteRule ^projectname/*$ projectname/trunk/www/ [L] That works for just http://site.local/projectname, but others like http://site.local/projectname/images/image1.jpg doesn't work.
Please enlight.
Thank you, Tee