I'm using this code to change my site.php page to site/
Code:
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^site/(\.*)$ /site\.php [L]
And it works, but my stylesheet doesn't display. I store my images in the images folder and my style.css file in the public_html folder where all other files are.
So, when I go to mysite.com/site/ and try to view the images, I get this URL: mysite.com/site/images/image.jpg instead of mysite.com/images/image.jpg.
How can I fix this? Anyone? Please!
|