<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
	<title>Design Brigade</title>
	<description>We deliver creative eCommerce, Marketing, and Consulting Services to business of all sizes</description>
	<link>http://www.designbrigade.com</link>
	<managingEditor>steve@designbrigade.com (Steve Shaw)</managingEditor>
	<copyright>2007, Steve Shaw</copyright>
	<pubDate>Fri, 23 Nov 2007 18:51:19 -0800</pubDate>
	<generator>JAWS 0.7.3</generator>
	<item>
		<title><![CDATA[ What is Google Page Rank? ]]></title>
		<description><![CDATA[ 	<p>Google Page Rank is the rank assigned to each page of your web site by Google. This rank represents how important Google determines your page to be. You want your pages to have a high page rank, because the rank is used in calculating which results should be shown first in Google's search engine. Page rank isn’t the only factor Google takes into account when ordering their search results, but it's probably the heaviest weighted factor.</p>
	<p>So how does Google assign a page rank? Page rank is dependent on the number of web sites linking to your page. The more incoming links you have the higher your page rank will be. You do have to be careful though, you don't just want to submit your page to every directory site, forum, or blog on the internet just to increase your page rank. Be selective, choose only sites which have a good reputation on the internet and sites that relate to your web site or web page. Google is smart enough to figure out when the incoming links to your page aren’t coming from quality sources.</p>
	<p>If you are curious to find out what your page ranks with Google, you can use our free page rank checker.
http://www.designbrigade.com/PageRankChecker</p>
 ]]></description>
		<link>http://www.designbrigade.com/index.php/blog/show/What-is-Google-Page-Rank</link>
		<author>steve@designbrigade.com (Steve Shaw)</author>
		<guid>http://www.designbrigade.com/index.php/blog/show/What-is-Google-Page-Rank</guid>
		<pubDate>Fri, 23 Nov 2007 18:51:19 -0800</pubDate>
	</item>
	<item>
		<title><![CDATA[ Search Engine Friendly URLs with Prado 3.1.1 ]]></title>
		<description><![CDATA[ 	<p>Creating SEF urls in Prado is very simple once you know how to do it. The   documentation is horrible because it's going to assume you already know Prado.   This simple guide will hopefully fill in the gaps. You can refer to the   documentation for more information and more examples of url mapping with regular   expressions. <a title="http://www.pradosoft.com/demos/quickstart/?page=Configurations.UrlMapping" href="http://www.pradosoft.com/demos/quickstart/?page=Configurations.UrlMapping" rel="nofollow">http://www.pradosoft.com/demos/quickstart/?page=Configurations.UrlMapping</a> </p>
<p>The type of urls this guide creates (no index.php)... </p>
<p><a title="http://www.mysite.com/my-home-page" href="http://www.mysite.com/my-home-page" rel="nofollow">http://www.mysite.com/my-home-page</a><br />
		<a title="http://www.mysite.com/product/35" href="http://www.mysite.com/product/35" rel="nofollow">http://www.mysite.com/product/35</a>
</p>
<p>1. Add .htaccess<br />
	2. Modify Application.xml<br />
	3. Use constructUrl to build   urls
</p>
<p><strong>1. Add the following code to your .htaccess file. This will allow for the   removal of index.php.</strong> </p>
<p>Options +FollowSymLinks<br />
RewriteEngine On<br />
RewriteCond   %{REQUEST_FILENAME} !-d<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteRule   ^(.*)$ index.php/$1 [L]
</p>
<p><strong>2. Add the following to the modules section of   protected/application.xml</strong> </p>
<pre>       <module id="request" class="THttpRequest" UrlManager="friendly-url" />
      <module id="friendly-url" class="System.Web.TUrlMapping" EnableCustomUrl="true" UrlPrefix="/" >
          <!-- example url map -->
          <!-- For more info: http://www.pradosoft.com/demos/quickstart/?page=Configurations.UrlMapping -->
          <url ServiceParameter="Home" pattern="my-home-page" />
          <url ServiceParameter="ViewProductDetails" pattern="product/3" parameters.id="\d+" />
      </module>
</pre>
<p>Some explaination of EnableCustomUrl="true" and   UrlPrefix="/"...<br />
		<strong>EnableCustomUrl="true"</strong> <br />
	This means let Prado use   your url map in the urls that get automatically generated by   constructUrl.<br />
	<strong>UrlPrefix="/"</strong><br />
	This removes index.php. If you   installed your prado app in a subdirectory you'll want to change this to   UrlPrefix="/mysubdirectory" replace "mysubdirectory" with your installation   subdirectory. </p>
<p><strong>3. Use $this->Service->constructUrl() in your links.</strong> </p>
<p>Example: </p>
<pre>   <a href="<%# $this->Service->constructUrl('ViewProductDetails',array('id'=>$this->Data->product_id,'title'=>$this->Data->product_title)) %>">My Product Link</a></pre>
<p>if you have followed the steps above the constructUrl outputs... </p>
<pre>   <a href="/product/32">My Product Link</a></pre>
 ]]></description>
		<link>http://www.designbrigade.com/index.php/blog/show/Search-Engine-Friendly-URLs-with-Prado-311</link>
		<author>steve@designbrigade.com (Steve Shaw)</author>
		<guid>http://www.designbrigade.com/index.php/blog/show/Search-Engine-Friendly-URLs-with-Prado-311</guid>
		<pubDate>Wed, 14 Nov 2007 00:59:52 -0800</pubDate>
	</item>
</channel>
</rss>
