开发者

Modify url withut changing the code

I want to 开发者_如何学Cchange my current url to a modified one.

Suppose my current url is

www.abc.com/xyz/location.htm

I want it to change to

www.abc.com/location.htm

please suggest a suitable way.... Thanks in advance


If you are running Apache servers, I'd suggest using mod_rewrite.

In that case you should have something like this in your .htaccess -file at the top level of your server root:

RewriteEngine on
RewriteRule  ^abc.com/xyz/(.*)$  <your_root_directory>/$1
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜