如何更改頁面url查詢並獲取前兩個字母。在.htaccess或php更改頁面URL並獲得前兩個字母
http://127.0.0.1/site/flowers/index.php?query=Bird
http://127.0.0.1/site/flowers/index.php?query=eagle
像這樣:
http://127.0.0.1/site/flowers/search/bi/bird.html
http://127.0.0.1/site/flowers/search/ea/eagle.html
的.htaccess代碼: 127.0.0.1/site/.htaccess
RewriteEngine on
RewriteRule ([^/\.]+)/?.html$ index.php?query=$1 [L]
爲什麼你在'/ site /'的第一個斜槓後有'+'?你如何得到'/site/flowers/index.php?query = Bird' URL?它是通過一些表單發佈或href鏈接? – anubhava
@anubhava,先生..形式帖子/site/flowers/index.php?query=Bird ....(地址欄) – moon93
.htacces位置> ... 127.0.0.1/site/.htaccess – moon93