Hey all, I'm trying to get this figured out and keep getting errors. I've tried the following code in my .htaccess...could Wordpress be the problem? Is there a workaround? Options +FollowSymlinks RewriteEngine on rewritecond %{http_host} ^business-cards-free.com [nc] rewriterule ^(.*)$ http://www.business-cards-free.com.com/$1 [r=301,nc] Code (markup): Options +FollowSymLinks RewriteEngine on RewriteCond %{HTTP_HOST} ^business-cards-free\.com RewriteRule ^(.*)$ http://www.business-cards-free.com/$1 [R=permanent,L] Code (markup): Think Wordpress is the issue? Or could it be the dashes in the url? The full .htaccess looks like this so far: # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress Code (markup): Thanks all!
I'm not sure, I think you have infinite loops (haap://www.business-cards-free.com.com/$1) again and again
Questions: 1. What version of WP are you using? 2. Is your WP installed in the domains root or in a sub? A basic WP .htaccess in the domains root should look like this: # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress Code (markup):