Ver Mensaje Individual
  #1 (permalink)  
Antiguo 20/02/2013, 01:35
matematicasypoesia
 
Fecha de Ingreso: julio-2012
Ubicación: Bilbao
Mensajes: 14
Antigüedad: 12 años, 8 meses
Puntos: 0
Necesito auda con el fichero .htaccess

Buenos dias, quiero evitar el problema de la duplicidad de contenido con google por no distinguir entre sitio con www y sitio sin www y he configurado mi fichero htaccess de la siguiente forma:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^misitio.com.es [NC]
RewriteRule ^(.*)$ http://www.misitio.com.es/$1 [L,R=301]
</IfModule>
<Ifmodule mod_expires.c>
<filesmatch "\.(jpg|JPG|gif|GIF|png|PNG|css|ico|js)$">
ExpiresActive on
ExpiresDefault "access plus 31 days"
</filesmatch>
</Ifmodule>

# -FrontPage-

IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*

<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
AuthName misitio.com.es
AuthUserFile /home/duwcfpsn/public_html/_vti_pvt/service.pwd
AuthGroupFile /home/duwcfpsn/public_html/_vti_pvt/service.grp

¿Esta bien así?