可能重复:
What is the best way to implement a friendly URL that has multiple variables using mod_rewrite?
我在我的网站中使用mod_rewrite
获取友好的网址,效果很好。当使用表单将变量添加到$_REQUEST
时,它将以常规格式调用,而不是友好调用。
我的表单很像<input type="text" class="searchbox" id='searchid' name="query" value=""/>
它现在确实指向www.someurl.com?query="form data"
。
我希望将其指向“友好网址”,例如:
www.someurl.com/query/"form data"
我怎么能用PHP做到这一点?
答案 0 :(得分:-2)
为什么不将所有内容都放在POST请求中?
像这样<form method='post' action='/'>
<input type='text' name='data' value='some value' />
</form>
_request中的结果将是
阵列( 'data'=&gt; '有些价值' )
你仍然保留你的网址结构。