如何更改我的链接页面名称,例如home.html,about.html,contact.html ...到任何单词?而不是www.mypage.com/about.html显示www.mypage.com/about /
由于
答案 0 :(得分:1)
www.mypage.com/about.html
引用文件。 www.mypage.com/about/
引用文件夹。当用户访问www.mypage.com/about/
时,他们正在访问该网页的索引 - www.mypage.com/about/index.php
或www.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]
希望这有帮助!