Search code examples
.htaccessjoomla2.5joomla-sef-urls

Joomla Custom URL through htaccess


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

Solution

  • 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]