Your Ad Here

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 …


You may like these posts

    How to get list of table names from database in mysql?How to add or remove file fields using jquery How to convert feeds to html using javascript and phpSmall urls generated using php code?

 

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