我的所有网站页面都在其相关目录下命名为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
答案 0 :(得分:1)
RewriteEngine On
RewriteRule ^$ /my-home-Page.html [L,NC]
RewriteRule ^about-us/index.html$ /about-us/about-me-page.html [L,NC]