I have urls like that /#!/page1
, I redirect them with :
RewriteCond %{QUERY_STRING} ^_escaped_fragment_=%2F(.*)$
RewriteRule ^$ /seo/%1.html [QSA,L]
So /#!/page1
read as /_escaped_fragment_=%2Fpage1
is redirected to /seo/page1.html
It's work perfectly however I want to redirect the home /#!/
to /seo/index.html
which actually redirect to /seo/.html
How can I do that? Thanks