Hey All,

I have simple seo urls installed on my store. Now for SEO purposes I am looking to also create a 301 redirect from outplaypoker.com to www.outplaypoker.com.

I was instructed to use the .htaccess however it will not work...

Here is what I am working with:
PHP Code:
# Use PHP5 Single php.ini as default
AddHandler application/x-httpd-php5s .php

#### BOF SSU
# For security reasons, Option followsymlinks cannot be overridden.
#Options +FollowSymLinks
Options +SymLinksIfOwnerMatch
RewriteEngine On
# Change "/zencart/ to the correct setting
# if your site is located at root folder, then you should have RewriteBase /
# Go to your include/configure.php, this value should be the same with the value of DIR_WS_CATALOG
RewriteBase /

# Deny access from .htaccess
RewriteRule ^\.htaccess$ - [F]
RewriteCond %{SCRIPT_FILENAME} -[OR]
RewriteCond %{SCRIPT_FILENAME} -d
RewriteRule 
.* - [L]
RewriteRule ^(.+) index.php/$[E=VAR1:$1,QSA,L]
#### EOF SSU 
And the 301 Redirect says to use:
PHP Code:
Options +FollowSymlinks
RewriteEngine on
rewritecond 
%{http_host} ^domain.com [nc]
rewriterule ^(.*)$ http://www.domain.com/$1 [r=301,nc] 
Any Help?

Thanks,
Nick