如何使用UrlRewrite和htaccess更改URL格式

时间:2013-07-04 08:25:22

标签: php html .htaccess url url-rewriting

我目前正在使用

http://server.com/index.php?page1=main&page2=contacts

我想改变它

http://server.com/main/contacts

你能帮忙如何用示例代码编写.htaccess文件。

1 个答案:

答案 0 :(得分:0)

试试此代码

RewriteEngine on
RewriteRule ^main/contacts$ index.php?page1=main&page2=contacts [L]

OR(对于动态页面)

RewriteEngine on
RewriteRule ^(.*)/(.*)$ /index.php?page1=$1&page2=$2