我试图使用.htaccess来重定向传递变量的url,并且它使用一个例外。我希望浏览器显示已发布的网址,而不是重定向的网址。
因此,如果用户发布http://sh.tstr.no/l/u3d68p
,我希望重定向到http://tstr.no/sh/index3.php?load=u3d68p
,但我希望在浏览器中显示已发布的网址。
我的.htaccess文件就像这样
RewriteEngine On # Turn on the rewriting engine
RewriteRule ^sh/l/([_0-9a-zA-Z-]+)? http://tstr.no/sh/index3.php?load=$1 [R,L]
我试过阅读例子,但我无法理解我所缺少的内容。
希望有人在这里提供帮助,提前谢谢