没有扩展名的uri的Apache mod_rewrite

时间:2011-10-16 11:13:10

标签: apache rewrite mode

我需要帮助apache url rewrite,我希望所有没有扩展名的网址都被重定向到index.php?id = query_string。

http://www.abc.com/abc它应该转到http://www.abc.com/index.php?id=abc

对于带扩展名的链接,不应该打扰

由于

1 个答案:

答案 0 :(得分:0)

不确定这是你在寻找什么,但这是我的理由:

RewriteEngine On
RewriteRule     ^[!/.]*([A-Za-z]+)/?$       /index.php?id=$1    [NC,L]

如果网址不包含'。'字符,它只包含字母,它将它放在'id'请求中,否则它保持不变

希望这有帮助。