我想改变我的网址(htaccess)

时间:2013-12-02 08:04:30

标签: regex apache .htaccess mod-rewrite

我想更改我的网址(htaccess) 来自:

www.website.com/page.php?id=128  

到:

www.website.com/?a=128  

www.website.com/images.php?id=128  

到:

www.website.com/?i=128  

谢谢

1 个答案:

答案 0 :(得分:2)

将此代码放入DOCUMENT_ROOT/.htaccess文件中:

RewriteEngine On

RewriteCond %{QUERY_STRING} (^|&)i=([^&]+)
RewriteRule ^$ /images.php?id=%1 [L]

RewriteCond %{QUERY_STRING} (^|&)a=([^&]+)
RewriteRule ^$ /page.php?id=%1 [L]