I\'ve got a duplicate content problem with my Symfony2 projet. The following urls gives the same content :
www.mywebsite.com/web/page and www.mywebsi
www.mywebsite.com/web/page
www.mywebsi
In the htaccess file in your web directory (the /web/.htaccess file), add these rules right beneath the RewriteEngine On:
/web/.htaccess
RewriteEngine On
RewriteCond %{THE_REQUEST} ^(GET|HEAD)\ /web/ RewriteRule ^(.*)$ /$1 [L,R=301]
This redirects all direct access to the web directory to the root.