如何从地址栏隐藏当前页面名称

时间:2012-12-26 04:12:23

标签: php

我希望我的网址在地址栏中看起来像这样 http://mysite.com/
而不是 http://mysite.com/somepage.html .php
我想在我的网站的所有页面中执行此操作 提前致谢!

2 个答案:

答案 0 :(得分:1)

您已在apache服务器中启用mod_rewrite并将您的页面调用为 将您的网页称为:

http://mysite.com/11/news
or 
http://mysite.com/11/blog

在根目录中添加.htaccess文件 -

RewriteEngine On
RewriteRule ^news/([0-9]+)/(.*)$ viewnews.php?news_id=$1 [L]
RewriteRule ^blog/([0-9]+)/(.*)$ blog.php?news_id=$1 [L]

答案 1 :(得分:0)

只需将包含您网站内容的iframe放入窗口大小

即可

因此,每次用户点击链接时,iframe都会更改内容,而不会更改您的网站网址

或者您可以使用此方法:http://html5demos.com/history