Hello,
I have this redirection rule in my htaccess file:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{QUERY_STRING} ^_t=\d+/?$ [NC]
RewriteRule ^ / [R=301,L,QSD]
Redirect 301 /c/system/ /t/system
</IfModule>
It redirects the given page perfectly, but if there's a number or letter after the slash, it won't work. Example: /c/system/8 redirects to /c/system8.
Can you please help me redirect /c/system/ with anything after the slash to /t/system?
Regards