ok, when I look into my .htaccess file I've this, I don't get the first part, do I need to have that? I only added www rewrite - the rest is from host. # -FrontPage- IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti* <Limit GET POST> order deny,allow deny from all allow from all </Limit> <Limit PUT DELETE> order deny,allow deny from all </Limit> AuthName www.flunkme.com AuthUserFile /home/sandrodz/public_html/_vti_pvt/service.pwd AuthGroupFile /home/sandrodz/public_html/_vti_pvt/service.grp RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} ^flunkme\.com$ RewriteRule ^(.*)$ http://www.flunkme.com/$1 [R=301,L]
sandroz, There's no reason to remove the first part. The first part handles your http authentication and prevents certain files from being downloaded. Leave it in place
okay, thx I have following rewrite rule in my htaccess of another directory, so do I add that one below? or do I blend them? is this correct: # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /college-guide/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /college-guide/index.php [L] </IfModule> # END WordPress RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} ^flunkme\.com$ RewriteRule ^(.*)$ http://www.flunkme.com/$1 [R=301,L]