please what I must change in this htaccess file to get this?:
example.com -> redirect -> example.com/newhp
example.com/index.php -> redirect -> example.com/newhp
I tried this:
.htaccess rewrite to redirect root URL to subdirectory
RewriteEngine On 
RewriteRule ^$ /newhp [L] 
and this:
RedirectMatch ^/$ /newhp
but it didn't work right. I guess because I need rewrite or delete something in my current htaccess.
Sorry for dump question, I am noob in this.
thanks