重写静态URL

时间:2013-03-20 06:45:49

标签: .htaccess mod-rewrite

我想要做的是将www.abc.com/test.html的网址更改为www.abc.com/context/

我不知道,如果这是可能的话。就像,我看到动态URL被更改,但我不知道这是否可能。我尝试过搜索引擎,但所有人都在帮助转换动态网址。

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

感谢您的帮助。

2 个答案:

答案 0 :(得分:1)

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

RewriteEngine On
RewriteBase /    # if you are working on a localhost change RewriteBase /example-folder-name/
RewriteRule ^context(.*) test.html

答案 1 :(得分:0)

试试这个

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

systax表示,只要您点击链接www.abc.com/context/,就会看到来自www.abc.com/test.html的内容