Rewriterule Q,example.com/xml/title/ to example.com/xml/index.php?var=title

时间:2010-08-05 18:08:36

标签: mod-rewrite

我有example.com/xml/index.php,我想用这个url example.com/xml/title/访问它,最后一部分是index.php的GET var,它应该使用该var显示结果,我应该在.htaccess文件中添加什么代码? 感谢

1 个答案:

答案 0 :(得分:0)

在文档根目录中的.htaccess文件中尝试此操作:

RewriteEngine on
RewriteRule ^xml/([^/]+)/$ xml/index.php?var=$1