-1

我想要做的是将 URL 更改www.abc.com/test.htmlwww.abc.com/context/

我不知道,这是否可能。就像,我看到动态 URL 被更改,但我不知道这是否可能。我尝试了搜索引擎,但都在帮助转换动态 URL。

请用一个想法指导我,也许我可以继续其他想法。

谢谢您的帮助。

4

2 回答 2

1

使用以下重写规则创建 .htaccess。

RewriteEngine On
RewriteBase /    # if you are working on a localhost change RewriteBase /example-folder-name/
RewriteRule ^context(.*) test.html
于 2013-03-20T06:59:29.423 回答
0

试试这个

RewriteEngine On
RewriteBase /
RewriteRule ^context(.*) test.html

系统税意味着,每当您点击链接时,www.abc.com/context/您都会看到来自www.abc.com/test.html

于 2013-03-20T06:53:42.473 回答