2
目前我有網址,像這樣的:如何編寫Apache重寫規則?
http://example.com/d/tag.php?n=1&tag=php
http://example.com/d/tag.php?n=1&tag=cms
我要添加重寫規則.htaccess
file.to作出這樣的網址:
http://example.com/tag/1/php
如何寫這樣的規則?
目前我有網址,像這樣的:如何編寫Apache重寫規則?
http://example.com/d/tag.php?n=1&tag=php
http://example.com/d/tag.php?n=1&tag=cms
我要添加重寫規則.htaccess
file.to作出這樣的網址:
http://example.com/tag/1/php
如何寫這樣的規則?
,看一下this link
mod_rewrite的臨客http://exmple.com/d/tag.php?n=1&tag=php所有請求重定向到一個特定的頁面你有編寫處理請求的代碼
希望這有助於
在這裏,你郭臺銘:
RewriteEngine On
RewriteRule ^tag/([0-9]*)/(.*)$ tag.php?n=$1&tag=$2
不要忘記把它放在你的.htaccess
fil e根據您的指示(d
)。