0

文件.php

include('site.html');

网站.html

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

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

4

2 回答 2

0

include('site.html');用替换file.php怎么样<a href='hello.html'>Link</a>

于 2013-05-30T11:02:05.803 回答
-1

您可以为此使用 mod_rewrite

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

并将链接更改为 hello.html

于 2013-05-30T11:15:01.930 回答