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:
And the 301 Redirect says to use: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} -f [OR]
RewriteCond %{SCRIPT_FILENAME} -d
RewriteRule .* - [L]
RewriteRule ^(.+) index.php/$1 [E=VAR1:$1,QSA,L]
#### EOF SSU
Any Help?PHP Code:Options +FollowSymlinks
RewriteEngine on
rewritecond %{http_host} ^domain.com [nc]
rewriterule ^(.*)$ http://www.domain.com/$1 [r=301,nc]
Thanks,
Nick



