Today's Posts Follow Us On Twitter! TFL Members on Twitter  
Forum search: Advanced Search  
Navigation
Marketplace
  Members Login:
Lost password?
  Forum Statistics:
Forum Members: 24,254
Total Threads: 80,792
Total Posts: 566,472
There are 2034 users currently browsing (tf).
 
  Our Partners:
 
  TalkFreelance     TalkFreelance Information     General Discussion     Member Website Announcements :

World of Creatives

Thread title: World of Creatives
Reply    
    Thread tools Search this thread Display Modes  
11-04-2011, 10:44 AM
#1
creativejen is offline creativejen
Status: Paladin
Join date: Jul 2006
Location: Sheffield, UK
Expertise: design, front-end markup
Software: Photoshop
 
Posts: 2,353
iTrader: 25 / 96%
 

creativejen is an unknown quantity at this point

Send a message via MSN to creativejen

  Old

Thanks for the feedback, I worked on some updates last night, added all the titles etc. I'm not really an seo person, but by full urls instead of relative, you mean instead of <a href="faq.php"> it should be <a href="http://www.....com/faq.php"> ?

Reply With Quote
11-04-2011, 12:31 PM
#2
Ornithopter is offline Ornithopter
Status: Member
Join date: Nov 2005
Location: Chicago
Expertise: PHP, SQL, jQuery, XHTML & CSS
Software: Aptana, Firebug, Evernote
 
Posts: 193
iTrader: 3 / 100%
 

Ornithopter is on a distinguished road

  Old

Originally Posted by creativejen View Post
Thanks for the feedback, I worked on some updates last night, added all the titles etc. I'm not really an seo person, but by full urls instead of relative, you mean instead of <a href="faq.php"> it should be <a href="http://www.....com/faq.php"> ?
Correct,

This will help search engines figure out whether you want your website to be:
Right now both sites work, which means you have duplicate content of each page at the www and non-www version of your site. This affects your website rankings in the search engines because different websites may link to you differently. You should pick either www or non-www and link to your site in a consistent manner. Then you should 301 redirect the domain you are not using to the one you are using.

You can accomplish the 301 redirect with an .htaccess snippet.

This code redirects http://www.worldofcreatives.com/ to http://worldofcreatives.com/
Code:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
</IfModule>
This code redirects http://worldofcreatives.com/ to http://www.worldofcreatives.com/
Code:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^worldofcreatives.com
RewriteRule (.*) http://www.worldofcreatives.com/$1 [R=301,L]
</IfModule>
I know the www to non-www one works, because that's what I use .

This is important because right now you could potentially have DOUBLE pages in search engines:By using FULL URLs it eliminates the ambiguity. Clicking both those links above you'll see that all the links change relative to the website. Relative links wouldn't be as much of a problem if you 301 redirected one of the two domains. However, I would still recommend using full URLs regardless.

You can type: "site:worldofcreatives.com" to check the pages search engines have indexed. On Google, if you type "site:worldofcreatives.com" it'll usually ask you to register to Google Webmaster Tools. Definitely sign up to monitor ALL your websites. You can even tell Google if you want to use the non-www or www version of your website once signed up to Webmaster Tools.

Good luck. If you have questions, feel free to ask

Thanked by 2 users:
creativejen (11-04-2011), Mauro.Casas (11-20-2011)
Reply    


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 

  Posting Rules  
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump:
 
  Contains New Posts Forum Contains New Posts   Contains No New Posts Forum Contains No New Posts   A Closed Forum Forum is Closed