任何人都可以帮我重写上面的链接,我制作了自定义脚本,但现在重写这个有问题,我用这样的东西启动 htaccess ......
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^([^/]*)$ /index.php?page=$1 [L]
RewriteRule ^([^/]*)$ /index.php?query=$1 [L]
RewriteRule ^([^/]*)/([^/]*)$ /index.php?query=$1&page=$2 [L]
但这不起作用,我有服务器错误 500 ...
这是我需要重写的..
http://site.com/index.php?page=1 ==> http://site.com/1
http://site.com/index.php?type=news&page=1 ==> http://site.com/news/1
http://site.com/index.php?query=searching ==> http://site.com/searching
http://site.com/index.php?query=searching&page=1 ==> http://site.com/searching/1