| |
| |
|
|
|
|
| |
|
| |
|
| :: |
| Author |
Message |
thedolphinboy
Joined: 24 Jul 2007 Posts: 8
|
Posted: Thu Jul 26, 2007 8:14 pm Post subject: Change "-" for "_" |
|
|
| How can i change "-" for "_" in the URLs???? |
|
|
| Back to top |
|
 |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 14327
|
Posted: Fri Jul 27, 2007 1:24 pm Post subject: Re: Change "-" for "_" |
|
|
Why would you want to do so ?
Anyway, pretty simple, but be sure about it, because it will change all your url at once.
Open phpbb_seo_class.php, and find the format_url() function's code, you just need to replace the hyphens ("-") with underscores ("_") in these three lines :
| Code: | | $url = preg_replace('`&(amp;)?#?[a-z0-9]+;`i','-',$url); |
and :
| Code: | $url = preg_replace( array("`[^a-z0-9]`i","`[-]+`") , "-", $url);
$url = ( $url == "" ) ? $type : strtolower(trim($url, '-')); |
++ |
_________________ Useful links :
SEO Forum || SEO Directory || SEO phpBB || SEO phpBB3 || Search
____________________
Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Référencement phpBB3 || Recherche |
|
| Back to top |
|
 |
thedolphinboy
Joined: 24 Jul 2007 Posts: 8
|
Posted: Fri Jul 27, 2007 2:25 pm Post subject: Re: Change "-" for "_" |
|
|
wow it works perfect, thank you!!!!  |
|
|
| Back to top |
|
 |
|
| Navigation |
Similar Topics |
|
|
|
|
|
|
|
| |
|
|
|
|
| |
|
|
|
|
| |