我的小网站有一个问题,问题出在网址上。这是我的网址:
http://example.com/by_location_directory_list_3.aspx?page=2
在我的PHP脚本中,我希望显示从$_GET[page]
我做了什么,有什么事,没有人工作,有人可以帮助我吗?
这是.HTACESS
文件
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^by_location_directory_list_(.*)\.aspx$ template.php?option=directory_list&location=location&id=$1 [L]
Options All -Indexes
</IfModule>
PHP脚本是
if(!empty($_GET['page'])){ echo "this on $_GET[page] page(s) "; }
答案 0 :(得分:1)
使用QSA标记,Query String Append
:[QSA,L]
如果存在,则会将网址的现有查询字符串附加到重定向的网址。