Hi there! I'm using mod_rewrite to clean up some of my URL's (duh) and I got it working. Sorta. It redirects to the correct page, but the stylesheet doesn't show up. Here's my code in .htaccess:
RewriteEngine on
RewriteRule ^blog/([^/\.]+)/?$ post.php?page=$1 [L]
So what's going on? This is my first time working with mod_rewrite, by the way.