0

我为 Intranet 编写了一个 Web 应用程序,并且我的链接不与实时服务器上的链接导航一起使用。喜悦。

我知道你在想什么:写你该死的应用程序正确。著名的。

我想知道是否有一个 mod_rewrite/htaccess 技巧可以让我从..

/http://example/[admin/generic]/etc/etc2/this_stays_the_same.file

..到..

/http://example/[src/reports]/etc/etc2/this_stays_the_same.file

..当我将它放在 admin/generic 目录中时,只需转换方括号中的内容。

如果有,那就太好了。

谢谢!

4

1 回答 1

1

如果你进入http://example/src/reports/...浏览器,你可以使用一个简单的Redirect

Redirect /src/reports /admin/generic

更新

如果您不想/admin/generic/...在浏览器栏中显示 URL,则必须进行重写而不是重定向

RewriteEngine on
RewriteRule ^src/reports/(.*)$ /admin/generic/$1 [L]
于 2013-04-30T13:53:58.983 回答