Al final cree el fichero .htaccess mediante nueva nomenclatura ( ht.access ) por comodidad y he realizado todos los cambios en el fichero de configuración pero no hay forma de que me reconozza el ht.access
httpd.conf
Código txt:
Ver original<Directory />
Options FollowSymLinks
AllowOverride All
Order deny,allow
Deny from all
</Directory>
<Directory "C:/xampp/htdocs">
MultiViews
Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride All
Order allow,deny
Allow from all
</Directory>
<Directory "C:/xampp/cgi-bin">
AllowOverride All
Options None
Order allow,deny
Allow from all
</Directory>
<FilesMatch "^ht\.">
Order allow,deny
Deny from all
</FilesMatch>
LogLevel debug
#Añadi esta linea porque no existia, para cambiar el nombre del htaccess
AccessFileName ht.access
ht.access
Código txt:
Ver original#Cambié index.php por contactar.php para comprobar si funciona el ht.access(.htaccess )!!!
DirectoryIndex contactar.php
# Configurando por defecto el juego de caracteres y el lenguaje
AddDefaultCharset UTF-8
AddLanguage en-US .html .htm .txt .xml .php
También cambié el logLevel a debug para ver si me decia algo sobre el ht.access pero no!!!!
Al ppio el ht.access lo coloqué en C:\ y luego en C:\xampp\htdcos pero ninguno de los dos funciona
Alguna idea???