I am trying to 301 redirect the http://whatever site to www.whatever site. to eliminate duplicate content to the SERPS. The actual site is, nwime doot cm / classifieds Can someone suggest a code for the htaccess in the classifieds subfolder to do this? I can't figure it out!! Thanks in advance!
In your .htaccess file add: [CODE] RewriteEngine on rewritecond %{http_host} ^whatever.com [nc] rewriterule ^(.*)$ http://www.whatever.com/$1 [r=301,nc] [/CODE] PHP:
A subdirectory's .htaccess can not affect the settings of its parent directory. You would have to change the .htaccess of the parent directory.