SEO your urls with cakePHP

In: Tutorials

6 Jun 2008

Anyone who has a website knows how important organic traffic is. You can get a larger share of this traffic if your website is search engine optimized. One way to SEO your site is to make relevant information part of your urls.

If you are using CakePHP for your web development you may find this view helper useful.
Since CakePHP 1.2 does not care beyond your needed function variables you can just add this onto all your urls.

class SeourlHelper extends Helper {
 
/**
 * SEO url a text string passed
 *
 * This function will perform some Search engine Optimization on a strign passed
 *
 * @param text string that we need to make a url out of
 * @return the SEOd url
 */
	function get_url($url) {
		$badchars = array('/','&amp;','(',')',"'",'"','!','?','.','@','%','*','<','>','|','$',',');
		$url = str_replace($badchars,'',$url);
		$url = str_replace(" ","_",$url);
		return $url;
    }
}

Comment Form

SoliTech GmbH

Services such as Facebook, MySpace, LinkedIn, Twitter etc. are experiencing exponential growth. Your company needs to stay competitive and utilize this new technology. We will help you devise and execute a higly effective marketing strategy that will grow your brands' following and deliver measurable results.

Click here to see all our service.

RSS What’s new in the forums?

  • EP not recovering again March 9, 2010
    Is this a regular thing? Its happened twice in my time on this game […]
  • Mito story competition. March 2, 2010
    This is a competition for the 11th Chapter of our little ninjas life! Please come up with something that follows the over all story line as stated... […]
  • Ninja News March 2, 2010
    Could we add another "news" type bar, like what appears when you kill someone, with perhaps forum news and maybe updates on things like server... […]
  • Arena February 18, 2010
    I was thinking about adding a new area, where there is no hiding and everyone can fight. […]
  • I cant gain EP 02.09.2010 February 9, 2010
    I am not regenerating EP. It has been this way since 02.08.2010 […]