URL重写:将index.html重写为/ home-page搜索友好文本

时间:2015-07-07 13:49:57

标签: apache .htaccess mod-rewrite url-rewriting

我的所有网站页面都在其相关目录下命名为index.html。 例如:

www.mydomain.com 

带我去

 www.mydomain.com/index.html

点击about-us页面,URL显示为

www.mydomain.com/about-us/index.html

(其中about-us是目录的名称)

如何使用.htaccess重写这些网址,以便我的网站更适合搜索?喜欢: 当用户去 www.mydomain.com它应该将URL重写为

www.mydomain.com/my-home-page

当用户进入

www.mydomain.com/about-us/index.html

它应该将URL重写为

www.mydomain.com/about-us/About-Me-Page

1 个答案:

答案 0 :(得分:1)

RewriteEngine On
RewriteRule ^$ /my-home-Page.html [L,NC]
RewriteRule ^about-us/index.html$ /about-us/about-me-page.html [L,NC]