Home » PHP Code, SEO »

3

Hi friends below two lines of code is for the generation of user friendly and seo (search engine optimization) urls.

It removes the all white spaces in the url and replace it with the ‘-’.

It removes the all white spaces at the end of the urls.

It removes the unambiguous text in the urls.

The lines are :

////////////////////////////

*******************************************

$seo_url=trim(ereg_replace(‘ +’,’ ‘,preg_replace(‘/[^a-zA-Z0-9\s]/’,”,strtolower($seo_url))));

$seo_url=str_replace(‘ ‘,’-',$seo_url);

********************************************

//////////////////////

Hope that it will working fine …


Related Posts

    How to get the php data grid?How to send external html content mail using php?Generating Random Password using PHP code?PHP Charts with using Google API

 

3 Comments

  1. seo says:

    Does this help with the seo of keyworded url

  2. It is just replace the spaces in the keywords and replace the single quote with ‘-’, that is for eg:

    generation of seo url in php code

    if it is topic like this.
    Then it is convert with the above code to

    generation-of-seo-url-in-php-code

  3. Nice post !!

    I already use a script like this, URL’s is a very important work in Brazilian SERPS.

    :)

Leave a Reply