我想将带有参数的url翻译成路径,即
http://www.example.com/?page=1 => http://www.example.com/1
http://www.example.com/?section=books&category=thriller&page=1 => http://www.example.com/books/thriller/1
然后我希望能够获取所有这些参数以在查询中使用它们以便根据这些参数进行选择,我不知道从哪里开始,我该怎么做?我正在使用这个 .htaccess 将我的所有请求重定向到 index.php
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.*)$ index.php/$1 [QSA,L]
我如何“翻译”一组参数的路径以在查询中使用它们?