Hello all please help me out with this: Trying to make this url (http://www.domain.com/search.php?category=book) to this (http://www.domain.com/category/book) ############httaccess############## Options +FollowSymlinks RewriteEngine On RewriteRule \.(css|js|jpg|png|gif)$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^category/(.*) search.php?category=$1 [L] ############httaccess End############## but this is breaking css,js locations its becoming: http://www.domain.com/category/css/style.css Thank you.