###############################################################################
# Add any custom 301 redirects
hey guys trying to redirect my http:// to www or something like that just dont want duplicate content
now i put the below code into my .htacess file and redirects work as they should but if i got to a product on my site and add to cart just brings up your shopping cart is empty and doesn't add item to cart. if i remove this redirect items will get added to cart fine anyone please help.
###############################################################################
# Notes:
#
# In general these should be few and far between. If you use a RewriteRule
# be sure to add the L flag to let Apache mod_rewrite know to stop processing
# and skip any RewriteRules defined later in the .htaccess file.
###############################################################################
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} .
RewriteCond %{HTTP_HOST} !^www\.anarchyangels\.net
RewriteRule (.*) http://www.anarchyangels.net/$1 [R=301,L]
</IfModule>


Reply With Quote

