Hi, firstly I have only been testing this plugin for the past few minutes and would like to thank the developer for making it freely available
.
At the moment I am using another plugin "AutoReadMore" and one of its features is that it places a linkable image thumbnail to the left of "read more" text. The problem I am facing is that links to articles on my site are in this form (for example when the article's title is clicked):
http://example.com/sectionname/categoryid-category-categoryname/articleid-articlename.html
example:
http://example.com/news/1-latest-news/47-hello.html
However, the link assigned by the "AutoReadMore" plugin to the "read more" text thumbnail takes the following form:
http://example.com/component/content/article/articleid-articlename.html
example:
http://example.com/component/content/article/47-hello.html
This means that there are two different links to the same article within the same "read more" text. This is not only undesirable for SEO but can also be confusing to users if they wish to link to the article. What I would like is to have one format for article links. Is it possible therefore to configure RedJ to redirect all requests to:
http://example.com/component/content/article/articleid-articlename.html
to
http://example.com/sectionname/categoryid-category-categoryname/articleid-articlename.html
In other words replace the
"/component/content/article/" part of URL with
"/sectionname/categoryid-category-categoryname/"? Thus when users click on the "read more" thumbnail, they will see:
www.example.com/news/1-latest-news/47-welcome.html instead of
www.example.com/component/content/article/47-hello.html.
Thanks