Search found 14 matches

by affiliate
Thu Aug 10, 2023 3:01 pm
Forum: General
Topic: 301 redirect on bludit
Replies: 12
Views: 2335

Re: 301 redirect on bludit

Hi ! I was faced with a similat issue as you. My hosting did https to http automatically, but not www to non www. So my site was accessible on both adresses. To fix this, first i had to make corrections on the canonical plug in that was not working as it should be ( i posted the code in the forum )....
by affiliate
Thu Aug 10, 2023 12:20 am
Forum: General
Topic: Canonical - Pagination
Replies: 7
Views: 3450

Re: Canonical - Pagination

To solve it, you need to modify code of canonical plugin : go in bl-plugins/canonical/plugin.php replace with this code. canonical will work with pagination on pages home, category, tag, page. It will not show a canonical on search results. this is the behaviour we want for canonical. <?php class pl...
by affiliate
Wed Aug 09, 2023 5:21 pm
Forum: General
Topic: Canonical - Pagination
Replies: 7
Views: 3450

Re: Canonical - Pagination

This can help too as the guy had a similar problem... https://wordpress.org/support/topic/canonical-url-for-paged/ Canonical is used when you have extremely similar content on different pages, so you indicate the canonical with the best version of your content on all these similar pages. It's quite ...
by affiliate
Wed Aug 09, 2023 5:15 pm
Forum: General
Topic: Canonical - Pagination
Replies: 7
Views: 3450

Re: Canonical - Pagination

hey, this is old but just to tell you that the canonical plug in does not work with pagination and this is kind of sad... If you activate it, then if you have : - https://site.com : - https://site.com/?page=2 - https://site.com/?page=3 All these pages will have the same canonical and yet they can be...
by affiliate
Thu Aug 03, 2023 4:12 pm
Forum: General
Topic: Static index page problem for seo
Replies: 4
Views: 958

Re: Static index page problem for seo

Looks like the only solution if we want to treat the canonical right is to directly add the content on the index page...
by affiliate
Thu Aug 03, 2023 4:11 pm
Forum: General
Topic: Some technical questions
Replies: 0
Views: 11611

Some technical questions

Hello bludit people, just 2 questions => 1) is it possible somehow to have a page with 2 categories ? or always only one ? 2) about "tag". Is there a way to add a description for a tag in the interface like it is possible for a category ? I can think of adding text files with the name of t...
by affiliate
Tue Aug 01, 2023 6:27 pm
Forum: General
Topic: Static index page problem for seo
Replies: 4
Views: 958

Re: Static index page problem for seo

only dirty solution i seed, is do not create this static page and in the code php, insert an ugly if page==index then echo => my content.

Canonical will be ok and texte will only exist on this page but jesus, this is really ugly !
by affiliate
Tue Aug 01, 2023 6:20 pm
Forum: General
Topic: Static index page problem for seo
Replies: 4
Views: 958

Static index page problem for seo

Hello, i want to create an index page that is a static page because if will contain a lot of text. So when the user arrives on my website, he sees this page. My problem is this content is also accessible with another url. In seo, it s very bad to have duplicated content. How can i fix this in a clea...
by affiliate
Mon Jul 25, 2022 8:56 pm
Forum: General
Topic: How to redirect page not found ?
Replies: 1
Views: 666

Re: How to redirect page not found ?

actually i found a quick and dirty solution : open file functions.php and add header with the page you want to redirect to. // Generate the page 404 Not found function buildErrorPage() { global $site; global $L; header('Location: https://www.example.com/'); exit; try { $pageNotFoundKey = $site->page...
by affiliate
Mon Jul 25, 2022 8:36 pm
Forum: General
Topic: How to redirect page not found ?
Replies: 1
Views: 666

How to redirect page not found ?

Hello, i just would like to find a way to redirect page not found to another url. I explain why. If you buy an expired domain, domain will have links useful for seo. Sometimes, it will be a link to mydomain.com/page1 and when i recreate the website, maybe i will not have such url. The power of the l...