PHP Code:
http://www.designfloat.com/General/Joshua_Glenn_Taking_Things_Seriously/
Matt Cutts wrote:
With underscores, Google’s programmer roots are showing. Lots of computer programming languages have stuff like _MAXINT, which may be different than MAXINT. So if you have a url like word1_word2, Google will only return that page if the user searches for word1_word2 (which almost never happens). If you have a url like word1-word2, that page can be returned for the searches word1, word2, and even “word1 word2″.
So how do we fix this? luckily Adam over at Pligg Template has provided some code to clean up the Pligg URL system to be more Search Engine Friendly. We will use some of that code to achieve a nice clean URL system like below.
PHP Code:
http://www.designfloat.com/general/joshua-glenn-taking-things-seriously/
PHP Code:
libs/utils.php and FIND
PHP Code:
$output = utf8_substr($input, 0, 240);
PHP Code:
$output = utf8_strtolower($input, 0, 240);
PHP Code:
libs/utils.php
PHP Code:
$output = str_replace("\"", "", $output);
PHP Code:
$output = str_replace(" - ", "-", $output);
$output = str_replace("_", "-", $output);
$output = str_replace("---", "-", $output);
$output = str_replace("\"", "", $output);
$output = str_replace("--", "-", $output);
i found this






Linear Mode

