我想:
example.com/about
显示与:
相同的内容example.com/about/about.html
所以我想隐藏子文件夹中的扩展名并更改网址在地址栏中的显示方式。
我应该如何处理.htaccess?
我可以:
example.com/about/about
显示与以下内容相同的内容:
example.com/about/about.html
但那不是我想要的。
感谢!!!
答案 0 :(得分:0)
假设您只想要这个URL而没有其他URL,您可以使用它。
RewriteEngine On
RewriteRule ^about/about.html$ /about [R=301,NC,L]