• HOME
  • SEO
  • GRAPHICS
  • BLOG
  • CONTACT

01Web

  • Web Design
  • Consultation
  • Web Site Redesign

MORE

02SEO

  • Search Engine Optimization
  • Internet Marketing

MORE

03Graphics

  • Graphic Design
  • Logo Design
  • Branding

MORE

Search this Site:
723 top ten pages achieved.

Web site design starting at $895

  • We have over 723 top 10 web positions to brag about, it is time you did the same!

    NOTE: A Search optimized page targets specific keyword searchs versus its meta tag, title, description, and the sum of written content on the page screen. Structure, pattern, cadence, etc. All play a role in building a strong web position profile in Search engine optimization. Please review any information online in particular that which you will find on the subject of search engine optimization on any search engine help area or support pages.

    Search friendly web design

    Canadian Web Design
    Vancouver web design
    Toronto web design
    Edmonton web design
    Abbotsford web design
    London web design
    Ottawa web design
    Barrie web design
    Help
    News

    Internet Marketing

    Search Engine Optimization
    Search Engine Marketing
    Banner Advertizing
    Link Exchanges


Search engine optimization Vancouver Seo code of ethics

 

Canada wide provider of search engine optimization internet web marketing , advertising and website promotion, web page ranking, overture consultation, link popularity campaigns and affordable professional Internet marketing services located in Vancouver. Want great results? Over 723 page 1 ranks achieved - SEO Samples here

 

Contact me now for results or call 1-604-691-1768

 

located in downtown vancouver at 400 - 1311 Howe St. ( Viva Towers at the Drake/Howe intersection)

 

Search engine optimization professionals

Starting at: $300/month and start watching your traffic increase!

We also do blog marketing and implimentation, RSS Syndication and Full Service Search engine marketing and results analysis.


We can help you get to the top of the search engine results lists, with a little help from experts in fine tuning of a web profile using intelligent ethical SEO(search engine optimization) techniques.

Synthium Multimedia, a Canadian Search engine marketing and Search optimization firm specializes in the end-user experience as well as reachability of web sites. Search engines are always looking for quality content to feed their ever searching audiences.

It is our mission to find out the best internet profile of any client web site and help it reach its maximum web position using time tested methods and high quality results on investments entrusted with us by our valued customer, this is your money, our expertise, and together, our success. We promote your web site to increase targetted traffic and help you increase sales, pushing your web value to new exciting enterprises.

We utilize search engine promotion strategies such as Google Sitemaps and RSS technologies

The Synthium Multidia Search Engine Optimization experts uses Google Sitemaps to inform Google's crawler about all your pages and to help people discover more of your web pages. Therefore increasing your quality traffic and also with it, web presence or your brand, your company name, and if you sell directly, this could increase your sales. We fully utilize valid XML that is perfect for the Google search engine.

Web page promotion (See our google Search results)

web analytics

  • Advanced Link Exchange (non-traditional linking strategies aimed at maximizing your site potential rankings): from $300/mo
  • Keywords research ( the selection of more appropriate terms for your site): $100 and up.
  • PPC Management (Google Adwords & Overture campaigns management): $150/month and up.
  • Top10 placement (Google, Yahoo, MSN promotion, from 6 months): from $300/month and up.

Building attractive Search Engine Optimized Custom Websites.

SEO tools and resources:

Learn Search Optimization with this free newsletter

Build huge links directories using this tool

Best of the Search Engine Optimization tools

What is google pagerank?

 
Powered By SEO Chat

 Designing search engine friendly PHP pages

See our Package Rates

Want to increase your traffic and web positioning?

Build huge links directories using this tool

The best Search engine optimization tool

PHP pages have a reputation of being more difficult (or at least different) to SEO than static HTML pages. Here’s an overview of the major issues encountered when trying to make PHP scripts rank well. While this focuses on PHP much of it is still relevant to dynamic pages in general.

PHP Speed

While page size does affect load time, spiders run on servers connected to high bandwidth networks, so download time is less important than the latency of the PHP script’s execution time. If a spider follows a link on a site and is forced to wait too long for the server to process the PHP code behind that page, it may label your page as unresponsive.

The biggest delays in a PHP script typically are the database and loop code. Avoid making SELECT * calls, instead explicitly name all the columns you want to retrieve, and if you are using MySQL, test your queries using the EXPLAIN statement. To optimize loops consider using duplicated code instead of low iteration loops, also use as many static values, such as count($array) values inside the loop as you can, generating their values before the loop once.

URL Cleanliness

A major goal in getting search engines to treat your PHP created pages well, is to make them look and act like static pages. If you have a large site you can use Apache to fake static looking URLs, or, with a smaller site, you can simply keep your GET variables to a useful minimum. In either case, however, never allow a spider to see links with different URL’s to the same content. If the URL is different, the page should be too.

One of the major problems most webmasters have with getting their dynamic pages to index is URL cleanliness. Since many dynamic pages are created with GET variables, lots of pages have URLs that look like:

Page.php?var=lkdjdfhv&var2=345&var3=kfjdks

Most of the search engines will be able to follow this link, because it has 3 or under get variables (a good rule of thumb is to keep the number of GET variables passed in the URL to under 3), but any more than 3 variables and you will run into problems. Try using less GET variables, and make them more relevant, rather that useless id numbers use titles, and other keyword rich bits of text. This is an example of a better URL:

Page.php?var=category&var2=topic

If the page requires more variables you may want to consider combining the variables by delimiting them with a hyphen or another unused character, and then splitting the variable in the target page.

Disabling Trans_sid

Possibly the biggest cause of webmaster frustration when SEO’ing php pages is PHP’s tendency to add session id numbers to links if cookies are rejected by the browser (SE spiders reject cookies). This will happen by default if your PHP installation was compiled with the –enable-trans-sid option (and this is the default from version 4.2 onward), and it creates links with an additional, long nonsense looking GET variable. In addition to making the links clunky this gives spiders different URLs with the same content, which makes them less likely to treat the pages individually, and possibly not even index them at all. A quick way to fix this is to disable the trans-id feature, if you have access, in php.ini by setting “session.use_trans_sid” to false. If you don’t have access to change php.ini you can add this line to the .htaccess file in your root directory:

<IfModule mod_php4.c> php_flag session.use_trans_sid off </IfModule>

Masking dymamic URLs

However the mere presence of a question mark in the URL will introduce a delay in google’s indexing of the page. This from Mike Grehan’s Interview with Daniel Dulitz of Google:

“So the mere presence of a question mark in the URL doesn't throw us for a loop at all. We will crawl those pages more slowly than we do with pages without question marks in the URL. Purely because they've identified themselves as being dynamic and we certainly don't want to bring anyone's site down because we're hitting the database too hard.”

Small sites will not need to worry much about this delay as it means your server is hit every few minutes, not a few times a second, but for larger sites this can slow down your site’s inclusion into the index.

Making dynamic pages look static without mod_rewrite

A way to mask bulky dynamic page URLs (and avoid the question mark delay) is Apache’s ForceType in combination with a PHP command to interpret URLs like: www.example.com/books/computers.html as referring to a page called “books” which is executed as a PHP script (I usually make a link on the linux server from “books.php” to “book” to make editing the script easier). The function will return an array of the additional values, including the category “computers”. This can be accomplished by inserting a line like this into the .htaccess file in the root of your web documents directory:

<Files *Directory Handle Name Here*> ForceType application/x-httpd-php </Files>

*Directory Handle Name Here* should be replaced with the alias name you are giving to the fake directory you are creating. In this example:

www.example.com/books/computers.html

your .htaccess line would look like this:

<Files books>ForceType application/x-httpd-php</Files>

You can then log into your server and create a link to the file “books” or whatever directory alias you have choosen. This is done with the linux command "ln", or link, like this:

$ Ln books.php books

This creates a link between the existing PHP script books.php and the non-existant “books”. This way all requests for the directory "books" will be given to books.php, ie www.example.com/books/computers.html would be handled by books.php

Inside books.php you can use this function (available here) to extract values from the static-looking request URI’s:


<?php
function processURI() {
    
$request = explode("/",$_SERVER["REQUEST_URI"]);
    
$count = count($request);     
    for (
$i = 1 ; $i < $count ; $i++) {              
       
$values["arg".$i] = $request[$i];   
    }
    return
$values;   
}
?>
1

So the above example of: www.example.com/books/computer.html would be processed like this:


<?php
$vals
= processURI();
$_GET[$vals[1]] = str_replace(".html", "", $vals[2]);
?>
1

With this, $_GET['books'] would equal "computer" similar to www.example.com/index.php?books=computer

PHP’s SEO’ing Advantages

A great advantage to using dynamic pages as opposed to static pages is the ability to create content that is constantly changing and updated in real time. RSS headlines, randomly circulating content and other automatically “fresh” content can boost your ranks in Google, and many other engines.

Another advantage to using PHP is that you can make simple modifications to many scripts to create relevant and fresh page titles. Since this is the most important on page factor in SEO special attention should be given to creating title tags that accurately reflect the page’s current content. Any html templates or used in PHP pages can be altered to contain this line:

<title><?=$page_title?></title>

With this, $page_title can be set to a keyword rich test describing the page. Title text is also important in improving the click-through from SERP’s, so be sure that the title tags doesn’t read like spam, but more like a human created title.

Also Check out: Stargeek's Intro to SEO

The text of this article may be freely reproduced with the following link and byline and without modification.
Dan Zarrella 2003 Stargeek Studios

    Website designer | Logo designer | Internet marketing | Graphics designer | Toronto web design |Vancouver web Marketing | sitemap | Internet marketing company | Website Design and Marketing Blog | links | ® | resources

© Synthium Multiimedia 2008. All Rights Reserved. Located in downtown Vancouver BC, Canada V6Z 2P3 ph: 1-604-691-1768

    Thursday 15th of May 2008 11:38:13 PM Updates
  • XHTML
  • CSS
  • Designed by :David Coulter