I would assume that search engines don't care if there are multiple
paths to the same content, as long as only one is linked to.  If you
are consistent within your symfony application the links should all
use one nomenclature and thus there is no problem.

We generally avoid displaying 404s because customers get pissed by
404s -- much better to redirect them to the canonical location.

jbw

On 10/20/07, Jonathan Franks <[EMAIL PROTECTED]> wrote:
>
> I have read often that search engines don't like to find the same
> content accessible from multiple urls. But I notice that in my
> application this is happening....
>
> I have a symfony routing rule to make my homepage index.html
>
> As such, I can reach my home page with ...
>
> www.mysite.com/
> www.mysite.com/index.html
>
> This is as expected and not a problem. However, I can also reach the
> same page with...
>
> www.mysite.com/index.php
> www.mysite.com/index.php/   <--- html loads but assets broken
>
> I think both the above should return a 404
>
> Also it is possible to reach every page in my frontend in two ways
>
> www.mysite.com/somepage.html     <--- this page I want
> www.mysite.com/index.php/somepage.html    <--- this page should return a 404
>
> Likewise, surely a symfony page with this type of url...
>
> www.mysite.com/xyz/xyz/xyz
>
> should not be available under this as well...
>
> www.mysite.com/xyz/xyz/xyz/
>
> Am I doing something wrong?? Is it important anyway?
>
> Thanks Jonathan
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"symfony users" group.
To post to this group, send email to symfony-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to