- Posts: 102
COMMUNITY FORUM
duplicate pages
- German Levi
-
Topic Author
- Offline
- Premium Member
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
- Posts: 15920
Alternatively an SEO/SEF extension can provide redirects.
Please Log in or Create an account to join the conversation.
- Peter k
-
- Offline
- New Member
- Posts: 1
Please Log in or Create an account to join the conversation.
- German Levi
-
Topic Author
- Offline
- Premium Member
- Posts: 102
Please Log in or Create an account to join the conversation.
- German Levi
-
Topic Author
- Offline
- Premium Member
- Posts: 102
// custom redirect
if ( $this->item->link != JRequest::getURI() ) {
$app = JFactory::getApplication();
$app->redirect($this->item->link,true);
}
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
- Posts: 15920
Although you can set this as a canonical link using Joomla!"s API in order to avoid a redirect.
Please Log in or Create an account to join the conversation.
- German Levi
-
Topic Author
- Offline
- Premium Member
- Posts: 102
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
- Posts: 15920
Please Log in or Create an account to join the conversation.
- German Levi
-
Topic Author
- Offline
- Premium Member
- Posts: 102
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
- Posts: 15920
Also you can use str_replace. Once more, I am a fan of canonical tags, they serve the same purpose without the need to redirect.
SEO-wise in all major search engines it is exactly the same thing.
Please Log in or Create an account to join the conversation.
- German Levi
-
Topic Author
- Offline
- Premium Member
- Posts: 102
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
- Posts: 15920
Please Log in or Create an account to join the conversation.
- German Levi
-
Topic Author
- Offline
- Premium Member
- Posts: 102
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
- Posts: 15920
I want to see the context.
Please Log in or Create an account to join the conversation.
- German Levi
-
Topic Author
- Offline
- Premium Member
- Posts: 102
Please Log in or Create an account to join the conversation.