2011-07-16 206 views
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 

如何寫這樣的規則?

回答

3

在這裏,你郭臺銘:

RewriteEngine On 
RewriteRule ^tag/([0-9]*)/(.*)$ tag.php?n=$1&tag=$2 

不要忘記把它放在你的.htaccess fil e根據您的指示(d)。