In wampserver2.4 in localhost - C:wamp/www/ Ho messo un mio sito (cartella nome: EXAMPLE) con il file .htaccess
tutti i settaggi sono OK e .htaccess viene letto e funziona ...
ma non tutte le istruzioni ... Es.
1) La prima istruzione lavora OK (quindi htaccess funziona)
# Index.html redirects
RewriteEngine on
RewriteBase /
RewriteRule ^index\.html$ EXAMPLE/$1 [R,L]
2) Ma la seconda non lavora ...
# Open the page either .html or without .html
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.html -f
RewriteRule ^([^/]+)/$ $1.html
Il mio problema è quando lavoro in locale, perchè sul sito le istruzioni funzionano perfettamente
Grazie