thapame 0 Newbie Poster

I have following code in my .htaccess for SEF URLs for www.fashionsansar.com so please let me know is this correct.

Options FollowSymLinks SymLinksIfOwnerMatch
RewriteEngine on

#################################################################################################
## Rewrite index urls
#################################################################################################
RewriteRule index-([0-9]*)\.html$ index.php?page$1 [NC]


#################################################################################################
## Rewrite image_view urls
#################################################################################################
RewriteRule fas_fusk/image_view([0-9]*)\.html fas_fusk/image_view.php?id=$1 [NC]


#################################################################################################
## Rewrite tag_search urls
#################################################################################################
RewriteRule fas_fusk/tag_search([0-9]*)-page-([0-9]*)\.html fas_fusk/tag_search.php?q=$1&page=$2 [NC]

but it's not working. .htaccess SEF URLs is already running without any problem on another website on same host.