Ho un problema con Apache.
Il mio sito ha ora queste regole:
RewriteCond %{HTTP_ACCEPT} text/html [NC]
RewriteCond %{HTTP_HOST} ^mysqite\.com [NC]
RewriteRule .* path/to/html/my.html [L]
Ho bisogno di creare regole solo per la home page per il reindirizzamento a un altro file html. Come posso fare questo?
La vecchia regola deve funzionare per altre pagine del sito.
Ci provo, ma non è un lavoro:
RewriteCond %{HTTP_ACCEPT} text/html [NC]
RewriteCond %{HTTP_HOST} ^mysqite\.com$ [NC]
RewriteRule ^$ path/to/html/my-new.html [L]
RewriteCond %{HTTP_ACCEPT} text/html [NC]
RewriteCond %{HTTP_HOST} ^mysqite\.com [NC]
RewriteRule ^/(.*) path/to/html/my.html [L]