我刚刚看到网站The Geek Designer并喜欢他的 URL。当您单击导航点时,例如关于,URL 显示/about/
。最后没有index.html
。
所以我自己试了一下:
我创建了一个目录,里面只有一个 index.html 文件。并创建超链接:<a href="http://www.abc.com/about/>
但 URL 显示/about/index.html
!
那么如何隐藏 index.html 呢?我不使用 PHP,也无法编辑 .htaccess 文件!
user1713847
问问题
3293 次
3 回答
4
如果您使用的是 Apache,这可能会帮助您 mod_rewrite:URL 重写文章初学者指南
如果您是 htaccess 文件,则添加
RewriteEngine On
RewriteBase /
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule ^(.*)$ $1.html [NC,L]
于 2012-10-04T09:33:54.187 回答
2
也许您可以在 .htaccess 文件中尝试 URL 重写?
于 2012-10-04T09:07:42.833 回答
-1
您在服务器上创建文件夹并将索引放在那里(包含所有需要的文件)。例如:“www.example.com/prices”,例如“prices”是一个文件夹。它不会在地址栏中显示 index.html。
于 2014-02-18T19:40:00.380 回答