mod_rewrite简单变量,用于重命名变量的页面

时间:2012-01-25 21:54:48

标签: mod-rewrite

如果可能,我该如何在mod_rewrite中执行此操作...

http://site.com/var=123

http://site.com/page.php?x=123

1 个答案:

答案 0 :(得分:1)

尝试将其放入文档根目录

中的.htaccess文件中
RewriteEngine on
RewriteRule ^var=(.+)$ /page.php?x=$1 [L]

如果您希望传递查询字符串,请在括号中添加QSA(因此看起来像[L,QSA]。这将是对 http:// site的请求.com / var = 123?something = else 将被重写为 /page.php?x=123&something=else