需要在我的网址中显示index.html

时间:2015-09-25 20:52:02

标签: .htaccess apache2

需要知道如何显示我网站的完整网址,我需要通过: www.ejemplo.com.ar访问www.ejemplo.com.ar/ index.html 我已尝试过所有类型的重定向和重写,但都没有成功。我希望你能帮助我。

Over Apache2

1 个答案:

答案 0 :(得分:0)

这是一个非常简单的解决方案,搜索可以很容易地揭示它。试试这个。

RewriteEngine On
RewriteBase /

RewriteCond %{REQUEST_URI} ^$
RewriteCond %{HTTP_HOST} ^(www\.)?ejemplo\.com\.ar$
RewriteRule ^$ http://%{HTTP_HOST}/index.html [L,R=301]