从url将文本设置为网站

时间:2014-02-26 19:36:31

标签: url hyperlink get

我正在尝试这样做:

例如,我有网站:

http://web.com

当我进入 http://web.com/text

网站将相同,但<h1></h1>将更改为<h1>text</h1>

当我进入 http://web.com/title

网站将相同,但<h1></h1>将更改为<h1>title</h1>等。

1 个答案:

答案 0 :(得分:0)

一种方法。 在你的.htaccess

RewriteEngine on
RewriteCond %{REQUEST_URI} !^/file.html$
RewriteRule .* /file.html [L,R=302]

在file.html中

<h1 id="header">text</h1>
<script type="text/javascript">
if (window.location.pathname != "/") {
document.getElementById("header").innerHTML =  window.location.pathname;
}
</script>