需要在我的 url 中显示 index.html
Need to show index.html in my url
需要知道如何显示完整的 URL 我的网站,我需要通过:
www.ejemplo.com.ar 到 www.ejemplo.com.ar/index.html
我尝试了所有类型的重定向和重写,但 none 成功了。我希望你能帮助我。
超过 Apache2
这是一个非常简单的解决方案,搜索一下就会很容易地找到它。试试这个。
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^$
RewriteCond %{HTTP_HOST} ^(www\.)?ejemplo\.com\.ar$
RewriteRule ^$ http://%{HTTP_HOST}/index.html [L,R=301]
需要知道如何显示完整的 URL 我的网站,我需要通过: www.ejemplo.com.ar 到 www.ejemplo.com.ar/index.html 我尝试了所有类型的重定向和重写,但 none 成功了。我希望你能帮助我。
超过 Apache2
这是一个非常简单的解决方案,搜索一下就会很容易地找到它。试试这个。
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^$
RewriteCond %{HTTP_HOST} ^(www\.)?ejemplo\.com\.ar$
RewriteRule ^$ http://%{HTTP_HOST}/index.html [L,R=301]