Joomla Custom URL through htaccess

169 views Asked by At

My URL: https://domain.com/my-team-league/viewgroup/201-crick

Needed URL: https://domain.com/league/201-crick

Help me to take out of this url issue please

.htaccess:

DirectoryIndex index.php
RewriteEngine On
RewriteBase /
RewriteRule ^/league/(.+) /my-team-league/viewgroup/$1
1

There are 1 answers

7
Croises On BEST ANSWER

Use the opposite (and without /):

RewriteEngine on 
RewriteRule ^my-team-league/viewgroup/(.+) league/$1  [R=302,L]

Try with [R=302,L] and after, when that work well, change for [R=301,L]