No consigo que funcione mi .htaccess
Quiero que mi web haga lo siguiente :
1.- Al entrar en http://www.miweb.es <-- se cargue el index.html
2.- Si le paso una variable al entrar en http://www.miweb.es/cadenadetexto se cargará la siguiente url http://www.miweb.es/load.php?id=cadenadetexto
las reglas definidas que tengo son :
Código:
RewriteEngine On
RewriteCond %{HTTP_HOST} !=""
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteCond %{HTTPS}s ^on(s)|
RewriteRule ^ http%1://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
RewriteRule ^([a-zA-Z0-9-_]*)/?$ /load.php?id=$1 [QSA,L,E]
Ahora mismo me carga siempre el load.php
Gracias