例如,如果我有这个工作链接:
/test1/index.php?prop1=val1
我有这个HTML标签:
<a href="/test2-val2/">link</a>
如何使用此标记打开包含以下内容的第一个链接:
/new_link-test1/index.php?prop2=val2
我的猜测是使用.htaccess
:
RewriteRule ^new_link-(.*)/$ /test1/index.php?$1 [L]
在我有下面的下一个网址之前一切正常:
/new_link-(.*)/?other_params=other_values
其他不可用的参数显示在页面操作之后。
当此网址打开时,它不会显示工作链接上的内容。
如何更改.htaccess
以解决此问题?