-- debussy007 <[EMAIL PROTECTED]> wrote
(on Tuesday, 12 February 2008, 08:20 AM -0800):
> Some of my content can have more than one Url, e.g. :
> * http://www.example.com/read_inbox/mail/15
> * http://www.example.com/read-inbox/mail/15
> * http://www.example.com/readInbox/mail/15

Well, this last one won't go to the same place, but the other two will.

> * etc.
> This is wrong regarding SEO. 
> You will probably reply me that I should just use one type of url in my
> application, 
> but what if someone links a different url to my site ?
> Also maybe someone that doesn't want your site to get well ranked can use
> this trick.

And why would they substitute another character than the ones published?
How would they know which URLs worked that way, and which didn't?

If you want to be paranoid about it, it's an easy change: just limit the
word delimiter characters the dispatcher can understand:

    $dispatcher->setWordDelimiter('-');
    $dispatcher->setPathDelimiter('-');

Done.

-- 
Matthew Weier O'Phinney
PHP Developer            | [EMAIL PROTECTED]
Zend - The PHP Company   | http://www.zend.com/

Reply via email to