我在使用RewriteRule
. 我为我的搜索页面创建了一个漂亮的 URL,它会在其中发布到自身以查询结果。但是,$_GET['type']
变量没有被发送到页面。这在我的本地 WAMP 服务器上运行良好,但在我的 Live 托管服务器上没有返回结果。
例如http://..com/search/searchType/
SearchType 是$_GET['type']
我发送到页面的数据。
我.HTACCESS
的如下
RewriteEngine On
RewriteRule ^property/(.*)/(.*)/([0-9]+)/$ view_property.php?type=$1&id=$3 [L]
RewriteRule ^search/(.*)/ search.php?type=$1 [L]