【发布时间】:2012-01-05 22:31:26
【问题描述】:
http://domain.com/index.php -> http://domain.com/ - 好的
http://domain.com/index.php?z=abc -> http://domain.com/index.php?z=abc - 不正常,保持不变。 这可以使用以下代码:
RewriteEngine On
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /.*index\.php\ HTTP/
RewriteRule ^(.*)index\.php$ /$1 [R=301,L]
如何修改这段代码,以便
http:// domain.com/index.php?z=abc -> http:// domain.com/?z=abc
【问题讨论】:
标签: php .htaccess mod-rewrite indexing