i want to create a SEO friendly urls so i like to create the urls as below
http://website.com/category-name/subcategory-name/product-name
i could create upto
http://website.com/category-name/
my rules then after gives 500 Internal Server Error
the rules i have written are as below
Options +FollowSymLinks
Options +Indexes
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) bipin/index.php
RewriteRule ^(administrator) - [L]
RewriteRule ^(blog) - [L]
Please if any one can help me out!!