Hi evreyone, I'm looking for someone to help me with redirect 301. I have a canonical URL. 1) http://site.com 2) http://www.site.com I want all of the to be redirected to http://site.com Pleaes PM if you're willing to do the job. Will pay. Best, K
I think setting redirect is not that hard, to pay for you can do it by your own, you can set redirect using cpanel redirect or by setting a rule in .htaccess file
Simple answer if you use apache with mod_rewrite RewriteCond %{HTTP_HOST} ^www.domain.com$ [NC] RewriteRule ^(.*)$ http://domain.com/$1 [R=301,L] Code (markup):