C
chrismitchell
Guest
I can see that this thread went well off its topic
:lol:
Same! I have too much of a hands on impatient approach though..I have an OCD when it comes to learning something new, I tend to get a tad obsessed so.
youre going to want to strangle me but uhm.. can i just check ive got this right..Anyhoo for example if you had this set up ~
<link rel="canonical" href="http://yoursite.com/" />
And then needed to write 1 for a particular article, which IMO it should be used for, you would then need 2 so ~
<link rel="canonical" href="http://yoursite.com/" />
<link rel="canonical" href="http://yoursite.com/dir1/article" />
So set up the www. via the htaccess/server files and then if you have a copy of a file link to the correct file via the link tag with the canonical attribute to tell the search engines that the article is a copy.
Does that make more sense Emma?![]()
Your joking, jease some ppl in this country.But it seems to only be when I go to France
I visited the WWW version and got 'Internal Server Error'.. any ideas why? :S<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !^reachingmorepeople.co.uk [NC]
RewriteRule ^(.*)$ http://reachingmorepeople.co.uk/$1 [R=301, L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
#----- START DAP -----
RewriteCond %{REQUEST_FILENAME} -f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} (.*)/wp-content/uploads/(.*)
RewriteRule (.*) /dap/client/website/dapclient.php?dapref=%{REQUEST_URI}&plug=wp&%{QUERY_STRING} [L]
#----- END DAP -----
</IfModule>
Options -Indexes
<IfModule mod_rewrite.c>RewriteEngine OnRewriteBase /RewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule . /index.php [L]#----- START DAP -----RewriteCond %{REQUEST_FILENAME} -f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} (.*)/wp-content/uploads/(.*) RewriteRule (.*) /dap/client/website/dapclient.php?dapref=%{REQUEST_URI}&plug=wp&%{QUERY_STRING} [L] #----- END DAP -----</IfModule>Options -Indexes
RewriteEngine OnRewriteCond %{HTTP_HOST} ^thebestmusicshop.co.uk [NC]RewriteRule ^(.*)$ http://www.thebestmusicshop.co.uk/$1 [L,R=301]
RewriteEngine onRewriteCond %{HTTP_HOST} ^thebestmusicshop.co.ukRewriteRule ^(.*)$ http://www.thebestmusicshop.co.uk/$1 [R=301,L]
Note* This .htaccess method of redirection works ONLY on Linux servers having the Apache Mod-Rewrite moduled enabled.