我有一个表单的网页有 3 个参数,比如
http://www.likeforex.com/currency-converter/fxconverter.php?f=euro-eur&t=usd-us-dollar&amt=1
我使用 .htaccess 将页面重写为:f_t.htm/amt
为:
http://www.likeforex.com/currency-converter/euro-eur_usd-us-dollar.htm/1
但是,我的问题是当用户更改amt(页面中间)的值时,表格被重新汇总,重新汇总的页面仍然是参数格式。如何在重写后格式中制作网址?
提交按钮有什么问题,还是其他什么?
the form:
<form name="e" method="get" action="fxconverter.php">
the amt parameter:
<input type="text" id="amt" name="amt" size="16" maxlength="16" value="'.$amt.'" onclick="this.focus();this.select();" />'
the submit button:
<input type="submit" value="Convert" class="bt" />
the .htaccess line:
RewriteRule ^(.*)_([^_]+)\.htm/([^/]+)$ fxconverter.php?f=$1&t=$2&amt=$3 [NC]
非常非常感谢你。