状态栏上的mod_rewrite

时间:2013-05-30 10:51:54

标签: php html

file.php

include('site.html');

site.html

<a href='folder/hello.html'>Link</a>

当您将鼠标悬停在Link上时,它会在状态栏中显示文件夹/ hello.html。我怎样才能让它显示hello.html呢?我无法修改site.html。

2 个答案:

答案 0 :(得分:0)

如何用include('site.html');替换 file.php 中的<a href='hello.html'>Link</a>

答案 1 :(得分:-1)

您可以将mod_rewrite用于此

RewriteRule ^。* hello.html /folder/hello.html

并将链接更改为hello.html