更改菜单链接到任何单词?

时间:2017-01-23 22:55:32

标签: html hyperlink

如何更改我的链接页面名称,例如home.html,about.html,contact.html ...到任何单词?而不是www.mypage.com/about.html显示www.mypage.com/about /

由于

1 个答案:

答案 0 :(得分:1)

www.mypage.com/about.html引用文件www.mypage.com/about/引用文件夹。当用户访问www.mypage.com/about/时,他们正在访问该网页的索引 - www.mypage.com/about/index.phpwww.mypage.com/about/index.html

更改网址名称的最简单简单方法是将www.mypage.com/about.html更改为www.mypage.com/about/index.html,然后更新您的链接。

但是,如果您要问的是,是否可以让访问www.mypage.com/about.html的用户自动重定向到www.mypage.com/about,您可以通过在第一个位置创建文件来实现自动重定向自动重定向或使用.htaccess文件的JavaScript / PHP代码:

要归档的文件夹:

RewriteEngine On
RewriteRule ^/about/ about.html [R=301,L]

档案到文件夹:

RewriteEngine On
RewriteRule about.html ^/about/ [R=301,L]

希望这有帮助!