浏览器在地址栏中显示重定向的URL

时间:2015-04-28 07:26:35

标签: php .htaccess mod-rewrite redirect

我正在尝试重定向以下网址:

<a href="Delhi-NCR/x/y">
通过以下.htaccess文件中的代码

到另一个网址:

RewriteEngine on
RewriteCond %{REQUEST_URI} Delhi-NCR/(.*)/(.*)
RewriteRule Delhi-NCR/(.*)/(.*) pages/examplePage.php?catId=$2 [L,QSA]

它运行正常,但浏览器在地址栏中显示重定向的网址而不是Delhi-NCR/x/y

那里有什么问题?

0 个答案:

没有答案