I have this rewrite rule
in my .htaccess
file:
RewriteRule ^home\/([a-z]+)\/([0-9]+)$ /?filter=$1&start=$2 [L]
Although this rule is correct, the only way to make it work (i.e: not show a 404 error
), is by disabling SEF plugin
.
My question is:
Is there a way to add some rewrite
rules, when SEF plugin
is activated (because I need it)?
P.S: These url params are used to filter data shown on a k2
module (mod_k2_content
).