Search code examples
regexapache.htaccessjoomla

Redirect | HTACCESS | Delete language indicator


I want to redirect in the file .htaccess this:

www.site.com/XX/page/page/

to

www.site.com/page/page

Is that possible to do to every single page that contains "XX"?


Solution

  • You can use this redirect rule in your site root .htaccess:

    RedirectMatch 302 ^/XX/(.+)$ /$1