.htaccess clean url with more than 3 paramenters

夙愿已清 提交于 2019-12-02 11:41:20

Let's try something like this?

RewriteEngine On
RewriteRule ^([^/]*)/([^/]*)/([^/]*)$ /index.php?p=$1&id=$2&read=$3 [L]

%{QUERY_STRING} is what you are looking for.

this is what I use for a similar situation:

RewriteRule   ^/(.*)  /index.php?r=/$1&%{QUERY_STRING} [L]
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!