我有网站www.example.com/index.php?q=注册我想将其重定向到www.example.com/registration
这段代码似乎不起作用,但我不知道为什么。

RewriteEngine On
RewriteRule ^([^/]*)\.html$ /index.php?q=$1 [L]

有人能帮我吗?

最佳答案

试试这个

RewriteEngine On
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
RewriteRule ^([^/]*)(.*)$ /$1[L,QSA]

关于.htaccess - .htaccess制作友好的网址,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18484719/

10-13 01:34