Hi, I wonder if anyone could help me.
We did a 301 redirect from bedroomfurniture.co.uk to "www" version and SEO friendly permalinks for our oscommerce website and I noticed yesterday non of them was suddenly working anymore.
301 redirect nor permalinks.
This is the code in our .htaccess file. Can anyone see anything wrong with it?

<IfModule mod_php5.c>
php_flag register_long_arrays Off
php_flag register_globals On
php_flag display_errors Off
</IfModule>

<IfModule mod_php4.c>
php_value session.use_trans_sid 0
php_value register_globals 1
php_flag display_errors Off
php_flag track_errors Off
</IfModule>

#CRE_SEO Install Begine
Options +FollowSymLinks
RewriteEngine on
RewriteEngine On

rewritecond %{http_host} ^bedroomfurniture.co.uk/ [nc]
rewriterule ^(.*)$ http://www.bedroomfurniture.co.uk/ [r=301,nc]

RewriteRule ^p([0-9]+)-(.*)\.html$ /product_info.php?products_id=$1 [QSA,L]
RewriteRule ^(.*)/c(.+)_p([0-9]+)-(.*)\.html$ /product_info.php?cPath=$2&products_id=$3 [QSA,L]

RewriteRule ^(.*)/c(.*)_index\.html$ /index.php?cPath=$2 [QSA,L]

RewriteRule ^(.*)/s(.*)_productset\.html$ /productset.php?pSet=$2 [QSA,L]

RewriteRule ^i([0-9]+)-(.*)\.html$ /pages.php?pID=$1 [QSA,L]



rewritecond %{http_host} ^bedroomfurniture.co.uk/ [nc]
rewriterule ^(.*)$ http://www.bedroomfurniture.co.uk/ [r=301,nc]

RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /.*index\.php\ HTTP/
RewriteRule ^(.*)index\.php$ /$1 [R=301,L]

RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /.*index\.html\ HTTP/
RewriteRule ^(.*)index\.html$ /$1 [R=301,L]

I'm not a developer, just making few changes when needed so I would really appreciate someones help on this.
Thank you