Génération d'URL avec des anciens sous-domaine

WRInaute impliqué
Bonjour,

Il y a un mois j'ai passe mon site sous spip.
et depuis quelque jours, j'ai remarqué des URL très bizare.

par exemple http://toto.monsite.com/nom-de-la-page.html ou http://titi.monsite.com/nom-de-la-page.html toto et titi étant des ex sous-domaine de mon site que j'ai supprimé" après le passage sous spip

le plus inquiétant c'est que ces URL pointe vraiment sur la page en question et ne donne pas de page 404.

Edit : en écivant ce message j'ai remarqué que même si je mets n'importe quoi comme sous domaine comme http://blablablabla.monsite.com/nom-de-la-page.html , j'ai le même résultat

est-ce que cela peu venir du htaccess ?

Mon htaccess
Code:
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^monsite\.com$ [NC] 
RewriteRule ^(.*) http://www.monsite.com/$1 [QSA,L,R=301]


RewriteCond %{HTTP_HOST} ^titi.monsite.com$
RewriteRule ^(.*) http://www.monsite.com/archive/$1 [QSA,L,R=301]

RewriteCond %{HTTP_HOST} ^toto.monsite.com$
RewriteRule ^(.*) http://www.monsite.com/toto/$1 [QSA,L,R=301]

RewriteCond %{HTTP_HOST} ^titi.monsite.com/backend.php3
RewriteRule ^(.*) http://www.monsite.com/spip.php?page=backend [QSA,L,R=301]


################ GESTIONS DES URLS SPIP #######################

# Deux pseudo-actions a present evacuees
# N'y at-il pas moyen de REMPLACER un nom dans la QueryString ?
RewriteCond %{QUERY_STRING} action=rss
RewriteRule spip.php	spip.php?page=rss [QSA,L]
RewriteCond %{QUERY_STRING} action=ical
RewriteRule spip.php	spip.php?page=ical_prive [QSA,L]

###
# Si le fichier ou repertoire demande existe
# ignorer toutes les regles qui suivent
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule "." - [skip=100]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule "." - [skip=100]
#
###


###
# Compatibilite avec les URLS "html" (pour transition sympa)
# voir fichier ecrire/urls/html.php
RewriteRule ^rubrique([0-9]+)(\.html)?$	spip.php?page=rubrique&id_rubrique=$1 [QSA,L]
RewriteRule ^article([0-9]+)(\.html)?$	spip.php?page=article&id_article=$1 [QSA,L]
RewriteRule ^breve([0-9]+)(\.html)?$	spip.php?page=breve&id_breve=$1 [QSA,L]
RewriteRule ^mot([0-9]+)(\.html)?$		spip.php?page=mot&id_mot=$1 [QSA,L]
RewriteRule ^auteur([0-9]+)(\.html)?$	spip.php?page=auteur&id_auteur=$1 [QSA,L]
RewriteRule ^site([0-9]+)(\.html)?$	spip.php?page=site&id_syndic=$1 [QSA,L]
# Compatibilite avec les anciennes URLS appelant directement des fichiers php
RewriteRule ^(rubrique|article|breve|mot|auteur|site|agenda|backend|backend-breves|distrib|forum|ical|plan|recherche|sommaire|sommaire_texte)\.php3?$	spip.php?page=$1 [QSA,L]
RewriteRule ^resume.php[3]?	spip.php?page=sommaire [QSA,L]
RewriteRule ^page.php[3]?	spip.php [QSA,L]
RewriteRule ^spip_cal\.php3?$	spip.php?page=ical_prive [QSA,L]
RewriteRule ^spip_rss\.php3?$	spip.php?page=rss [QSA,L]
# Fin compatibilite
###

##Modification personelle
RewriteRule ^(plan)\.html$ spip.php?page=$1 [QSA,L]
RewriteRule ^(credit)\.html$ spip.php?page=$1 [QSA,L]
RewriteRule ^(contact)\.html$ spip.php?page=$1 [QSA,L]
RewriteRule ^(resultats)\.html$ spip.php?page=$1 [QSA,L]
###
# ping http://site/1234 => article1234

RewriteRule ^([1-9][0-9]*)$     spip.php?action=redirect&type=article&id=$1 [QSA,L]

#
###


###
# URLs "propres", "propres2", "libres", "arbo"

RewriteRule ^[^\.]+(\.html)?$		spip.php [QSA,E=url_propre:$0,L]

# Fin URLs "propres" et "propres2"
###

###
# Divers

# bloquer les acces aux repertoires .svn/ (SPIP, plugins, squelettes...)
RewriteRule ^(.*/)?\.svn/ - [F]

###
# Fichiers "standards" (si absents de la racine)
#
RewriteRule ^robots[.]txt$      spip.php?page=robots.txt [QSA,L]
RewriteRule ^favicon[.]ico$      spip.php?page=favicon.ico [QSA,L]
RewriteRule ^sitemap[.]xml$      spip.php?page=sitemap.xml [QSA,L]
##

# expirer les images (pour contourner gros bug MSIE sur le cache)
# note : a decommenter si vous voulez tester
#<IfModule mod_expires.c>
# ExpiresActive on
# ExpiresByType image/gif A3600
# ExpiresByType image/jpeg A3600
# ExpiresByType image/png A3600
#</IfModule>

#################################
# gestion des erreurs 404
# voir http://www.spip.net/fr_article3226.html
# Pour que le serveur http renvoie les erreurs 404 vers SPIP, supprimer le '#'

ErrorDocument 404 /spip.php?page=404

#
###
 
Discussions similaires
Haut