Symfony2 プロジェクトで重複コンテンツの問題が発生しました。次の URL は同じコンテンツを提供します。
www.mywebsite.com/web/page
とwww.mywebsite.com/page
これが私の/.htaccess
ファイルの内容です:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ web/$1 [QSA,L]
</IfModule>
そして私の/web/.htaccess
ファイルの内容:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ app.php [QSA,L]
</IfModule>
/web
toで始まる URL をリダイレクトしたいのです/
が、うまくいきません。何か提案はありますか?