简体   繁体   中英

Redirect URLs using Redirect component or htacess

In Joomla 3.4 want to redirect this page:

https://www.portal-gestao.com/component/k2/1422-como-i...%C3%A9tica-na-sua-empresa.html

To this:

https://www.portal-gestao.com/item/1422-como-i...%C3%A9tica-na-sua-empresa.html

Using Compontent - > Redirect, I added the following redirect:

/component/k2/1422-como-i...ética-na-sua-empresa.html

Redirect to:

https://www.portal-gestao.com/item/1422-como-i...%C3%A9tica-na-sua-empresa.html

But this did not work.

Then I added in .htaccess:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.portal-gestao.com
RewriteRule ^component/k2/(.*)$ https://www.portal-gestao.com/item/$1 

But this also doesn't work.

Help anyone?

Add redirect flag

RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.portal-gestao.com
RewriteRule ^component/k2/(.*)$ https://www.portal-gestao.com/item/$1 [R=301,L]

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM