.htaccess替换url?

时间:2012-05-10 21:29:50

标签: .htaccess

我有这样的网址:

localhost/site/index.php?option=com_cust&tool=edit

我想将index.php?option=com_cust&tool=edit替换为edit。这可能吗?我所做的尝试不起作用,例如:

RewriteEngine On
RewriteRule ^index.php?option=com_cust&tool=edit localhost/site/edit [L,QSA,R=301]

1 个答案:

答案 0 :(得分:1)

RewriteRule ^site/edit site/index.php?option=com_cust&tool=edit [L]

你有倒退 - 重写模块做的是它接受用户键入的内容(在这种情况下,'编辑')并将其转换为服务器可以理解的内容(加载index.php并传递一堆它的变量)。

此外,您绝对不需要外部重定向,更不用说301重定向了。 'L'应该是你需要的唯一标志。