.htaccess - Need to show index.html in my url -


need know how show full url of website, need pass: www.ejemplo.com.ar www.ejemplo.com.ar/index.html i've tried types of redirect , rewrite, none worked out. hope can me.

over apache2

this pretty easy solution, search have revealed easily. try this.

rewriteengine on rewritebase /  rewritecond %{request_uri} ^$ rewritecond %{http_host} ^(www\.)?ejemplo\.com\.ar$ rewriterule ^$ http://%{http_host}/index.html [l,r=301] 

Comments