重写URL - htaccess和apache

时间:2014-12-21 08:39:30

标签: apache .htaccess rewrite

我有以下网址,

  

http://system.test.com/login

     

http://system.test.com/system/customer/portal/1

  

当用户访问第一个网址时,第二个网址的内容将会出现

哪个重写规则可以帮助我/

1 个答案:

答案 0 :(得分:0)

以下是重写指南http://httpd.apache.org/docs/2.0/misc/rewriteguide.html

我会给你答案:

RewriteRule ^/login(.*)$ /system/customer/portal/1$1 [R]

第一个是system.test.com/之后的正则表达式,第二个是替换。在这里,我们用/ system / customer / portal / 1替换/ login