<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Question2Answer Q&amp;A - Recent questions tagged seo-urls</title>
<link>https://www.question2answer.org/qa/tag/seo-urls</link>
<description>Powered by Question2Answer</description>
<item>
<title>Replace a slash to a dash in a link (../123/qarticle to ../123-qarticle) Adsense Requirements</title>
<link>https://www.question2answer.org/qa/109705/replace-slash-dash-qarticle-qarticle-adsense-requirements</link>
<description>

&lt;p&gt;Hello.&lt;/p&gt;

&lt;p&gt;How to change the standard link&amp;nbsp;&lt;/p&gt;

&lt;p&gt;`site.org/58020&lt;strong&gt;&lt;span style=&quot;color:#e74c3c&quot;&gt;/&lt;/span&gt;&lt;/strong&gt;how-to-replace-spa`&amp;nbsp;to&amp;nbsp;&lt;/p&gt;

&lt;p&gt;`site.org/58020&lt;span style=&quot;color:#e74c3c&quot;&gt;&lt;strong&gt;-&lt;/strong&gt;&lt;/span&gt;how-to-replace-spa`&amp;nbsp;on the site.&lt;/p&gt;

&lt;p&gt;id/prettyurl to id-prettyurl&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/109705/replace-slash-dash-qarticle-qarticle-adsense-requirements</guid>
<pubDate>Sun, 30 Jul 2023 05:40:44 +0000</pubDate>
</item>
<item>
<title>I have more than 50k page with redirect on google search Consol</title>
<link>https://www.question2answer.org/qa/109468/have-more-than-50k-page-with-redirect-on-google-search-consol</link>
<description>

&lt;p&gt;My website have lost a lot of traffic due to this problems.&lt;/p&gt;

&lt;p&gt;I have only 2 redirects done.&lt;/p&gt;

&lt;p&gt;http to https and www to none www see the screenshot&amp;nbsp;&lt;/p&gt;

&lt;p&gt;&lt;img alt=&quot;&quot; src=&quot;https://www.question2answer.org/qa/?qa=blob&amp;amp;qa_blobid=14941581095306231834&quot; style=&quot;height:98px; width:600px&quot;&gt;&lt;/p&gt;

&lt;p&gt;Here is an example of the pages with redirects&lt;/p&gt;

&lt;p&gt;&lt;img alt=&quot;&quot; src=&quot;https://www.question2answer.org/qa/?qa=blob&amp;amp;qa_blobid=16708040399298790198&quot; style=&quot;height:324px; width:600px&quot;&gt;&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/109468/have-more-than-50k-page-with-redirect-on-google-search-consol</guid>
<pubDate>Mon, 17 Jul 2023 13:13:03 +0000</pubDate>
</item>
<item>
<title>Urgent! Pagination creates duplicate content!</title>
<link>https://www.question2answer.org/qa/95054/urgent-pagination-creates-duplicate-content</link>
<description>

&lt;p&gt;Pagination logic is not correct. It depends on &quot;start&quot; GET parameter, which affects the offset.&lt;/p&gt;

&lt;p&gt;But if I change the number of questions displayed, it causes some SEO problems.&lt;/p&gt;

&lt;p&gt;You may say that all I need to do is to close pagination from indexing... But this is a holywar topic for another discussion.&lt;/p&gt;

&lt;p&gt;For example, in my case, I've changed number of questions per page from 20 to 30 and this caused pages such as:&lt;/p&gt;

&lt;ul&gt;

&lt;li&gt;/?start=20&lt;/li&gt;

&lt;li&gt;/?start=30&lt;/li&gt;&lt;/ul&gt;

&lt;p&gt;have similar titles, which are &quot;[category name] - page 2&quot;.&lt;/p&gt;

&lt;p&gt;Or:&lt;/p&gt;

&lt;ul&gt;

&lt;li&gt;/?start=320&lt;/li&gt;

&lt;li&gt;/?start=330&lt;/li&gt;&lt;/ul&gt;

&lt;p&gt;Have title &quot;[category name] - page 17&quot;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;This creates duplicate titles which is really bad for SEO.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Moreover I can put &lt;strong&gt;ANY&lt;/strong&gt; number in &lt;strong&gt;start&lt;/strong&gt; parameter and Q2A will give me a &lt;strong&gt;200 OK&lt;/strong&gt; answer with some content. Search engines just don't know, that pages like &lt;strong&gt;/?start=115&lt;/strong&gt; or &lt;strong&gt;/?start=333&lt;/strong&gt; exist. But if they do - it will create even more duplicate pages.&lt;/p&gt;

&lt;h2&gt;The correct approach&lt;/h2&gt;

&lt;p&gt;The right, or best practice to organize pagination is to use &lt;strong&gt;PAGE NUMBER&lt;/strong&gt; instead of OFFSET (start in our case).&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#e74c3c&quot;&gt;&lt;strong&gt;Current logic:&lt;/strong&gt;&lt;/span&gt; use &quot;start&quot; parameter as offset. Take in count the number of questions from site options. But depending on number of questions displayed, start parameter will always change!&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#27ae60&quot;&gt;&lt;strong&gt;Correct logic:&lt;/strong&gt;&lt;/span&gt; use page number which will consider number of questions displayed from site options and page number will always remain the same.&lt;/p&gt;

&lt;p&gt;So for 30 questions per page, instead of &lt;strong&gt;/?start=30&lt;/strong&gt; for second page we must have &lt;strong&gt;/?page=2&lt;/strong&gt; and &lt;strong&gt;page=2&lt;/strong&gt; parameter has to stay constant (!!!), not depending on number of questions per page option.&lt;/p&gt;

&lt;p&gt;If number of questions changes to, lets say 50, pager links will not change to &lt;strong&gt;/?start=50&lt;/strong&gt; for second page, it will remain as &lt;strong&gt;/?page=2&lt;/strong&gt; and will not break our SEO.&lt;/p&gt;

&lt;p&gt;This is implemented in all major CMS's. I wonder why Q2A had to go the other way.&lt;/p&gt;

&lt;p&gt;I've looked into the code. All logic divides into two parts:&lt;/p&gt;

&lt;ol&gt;

&lt;li&gt;creating links for pager;&lt;/li&gt;

&lt;li&gt;creating offset for correct database queries for each page.&lt;/li&gt;&lt;/ol&gt;

&lt;p&gt;This is described in following files:&lt;/p&gt;

&lt;ol&gt;

&lt;li&gt;&lt;strong&gt;\qa-include\app\format.php&lt;/strong&gt; lines 1212 - 1282 function qa_html_page_links()&lt;/li&gt;

&lt;li&gt;&lt;strong&gt;\qa-include\app\q-list.php&lt;/strong&gt; lines 29 - 151 function qa_q_list_page_content()&lt;/li&gt;

&lt;li&gt;&lt;strong&gt;\qa-include\app\search.php&lt;/strong&gt; lines 29 - 140 function qa_get_search_results()&lt;/li&gt;

&lt;li&gt;and maybe in some other places...&lt;/li&gt;&lt;/ol&gt;

&lt;p&gt;Sounds not very hard to override this.&lt;/p&gt;

&lt;p&gt;Who wants to cooperate and write a plugin? Or maybe this issue will be corrected in future releases of Q2A?&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/95054/urgent-pagination-creates-duplicate-content</guid>
<pubDate>Thu, 29 Jul 2021 19:56:05 +0000</pubDate>
</item>
<item>
<title>Duplicate Content Issues in Google Search Console</title>
<link>https://www.question2answer.org/qa/94027/duplicate-content-issues-in-google-search-console</link>
<description>

&lt;p&gt;Hi Question2answers Community...&lt;/p&gt;

&lt;p&gt;I have recently checked my &lt;strong&gt;Google search console&lt;/strong&gt;, in which I have seen many duplicate urls are indexing.&lt;/p&gt;

&lt;p&gt;Like this-&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Original URL -&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;

&lt;li&gt;&lt;a href=&quot;https://peddia.net/qa-hindi/569/lal-kila-kahan-hai&quot; rel=&quot;nofollow&quot;&gt;https://peddia.net/qa-hindi/569/lal-kila-kahan-hai&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Duplicate URL -&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;

&lt;li&gt;&lt;a href=&quot;https://peddia.net/qa-hindi/569/lal-kila-kahan-hai?show=570&quot; rel=&quot;nofollow&quot;&gt;https://peddia.net/qa-hindi/569/lal-kila-kahan-hai?show=570&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;

&lt;p&gt;This type of more than 400 urls indexing.&lt;/p&gt;

&lt;p&gt;Please suggest me any Idea for solve this problem.&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/94027/duplicate-content-issues-in-google-search-console</guid>
<pubDate>Wed, 16 Jun 2021 04:02:56 +0000</pubDate>
</item>
<item>
<title>How to Fix Google Console Error For having more than 50k question urls in sitemap?</title>
<link>https://www.question2answer.org/qa/92129/google-console-error-having-more-than-question-urls-sitemap</link>
<description>

&lt;blockquote&gt;

&lt;p&gt;&lt;span style=&quot;background-color:#fafafa; color:rgba(0, 0, 0, 0.87); font-family:Roboto,RobotoDraft,Helvetica,Arial,sans-serif; font-size:15px&quot;&gt;Google&amp;nbsp;Says, &quot;Your Sitemap contains too many URLs. Please create multiple Sitemaps with up to 50000 URLs each and submit all Sitemaps.&quot;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;&lt;img alt=&quot;&quot; src=&quot;https://www.question2answer.org/qa/?qa=blob&amp;amp;qa_blobid=6597873627645162011&quot; style=&quot;height:513px; width:600px&quot;&gt;&amp;nbsp;&lt;/p&gt;</description>
<category>Plugins</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/92129/google-console-error-having-more-than-question-urls-sitemap</guid>
<pubDate>Sun, 04 Apr 2021 03:14:10 +0000</pubDate>
</item>
<item>
<title>How To Change Page Links to Another Language</title>
<link>https://www.question2answer.org/qa/57862/how-to-change-page-links-to-another-language</link>
<description>Hello there,&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;I succesfully installed and translated q2a however I couldn't change &lt;br /&gt;
&lt;br /&gt;
/tags =&amp;gt; /blabla&lt;br /&gt;
/hot =&amp;gt; /blabla2&lt;br /&gt;
&lt;br /&gt;
/users =&amp;gt; /blabla3&lt;br /&gt;
&lt;br /&gt;
Is there an easy way to do that?</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/57862/how-to-change-page-links-to-another-language</guid>
<pubDate>Wed, 24 May 2017 09:35:49 +0000</pubDate>
</item>
<item>
<title>How to change to custom question URL?</title>
<link>https://www.question2answer.org/qa/55299/how-to-change-to-custom-question-url</link>
<description>Hi! I've recently installed Q2A on a website subdomain (e.g: &lt;a href=&quot;http://www.domain.com/q2a/&quot; rel=&quot;nofollow&quot;&gt;http://www.domain.com/q2a/&lt;/a&gt;) and I have some problems trying to set up question URLs.&lt;br /&gt;
&lt;br /&gt;
Despite the fact that there are some customization options in admin settings, I'm looking for another simple combination that's not available to select. What I'm looking for is for an estructure for questions like the following one:&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.domain.com/q2a/title-question-here-2&quot; rel=&quot;nofollow&quot;&gt;http://www.domain.com/q2a/title-question-here-2&lt;/a&gt;&lt;br /&gt;
instead of&lt;br /&gt;
&lt;a href=&quot;http://www.domain.com/q2a/2/title-question-here&quot; rel=&quot;nofollow&quot;&gt;http://www.domain.com/q2a/2/title-question-here&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Is there anyone else looking for the same?&lt;br /&gt;
I don't know if it's posible to do so but a URL without the question id between slashes would be perfect for something that I'm looking for.&lt;br /&gt;
&lt;br /&gt;
I checked the htaccess and files like qa-base.php and many many more where it seems that q2a is doing something with URL but I haven't found anything. Hope you can help!&lt;br /&gt;
&lt;br /&gt;
Thanks in advance</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/55299/how-to-change-to-custom-question-url</guid>
<pubDate>Mon, 12 Dec 2016 03:37:55 +0000</pubDate>
</item>
<item>
<title>Duplicate URL with same title on Google search when change a question title</title>
<link>https://www.question2answer.org/qa/53845/duplicate-with-same-title-google-search-change-question-title</link>
<description>

&lt;p&gt;The problem is here, assume that I have a question with title:&lt;/p&gt;

&lt;table border=&quot;1&quot; cellpadding=&quot;1&quot; style=&quot;width:500px; border-spacing: 1px;&quot;&gt;

&lt;tbody&gt;

&lt;tr&gt;

&lt;td&gt;Changes no.&lt;/td&gt;

&lt;td&gt;Question title&lt;/td&gt;

&lt;td&gt;The URL&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt;

&lt;td&gt;(1)&lt;/td&gt;

&lt;td&gt;Who created Q2A&lt;/td&gt;

&lt;td&gt;/1/Who-created-Q2A&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt;

&lt;td&gt;(2)&lt;/td&gt;

&lt;td&gt;Who created Question2Answer&lt;/td&gt;

&lt;td&gt;/1/Who-created-Question2Answer&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt;

&lt;td&gt;(3)&lt;/td&gt;

&lt;td&gt;Who is contributing to Q2A?&lt;/td&gt;

&lt;td&gt;/1/Who-is-contributing-to-Q2A&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;

&lt;p&gt;&amp;nbsp;&lt;/p&gt;

&lt;p&gt;So, if I access one of three URL, it are worked. But it's not redirect to the newest (/1/Who-is-contributing-to-Q2A), so when Google indexing, it will index all three of these. And result is I have duplicate result on Google search. So is this a bug or anything to fix this?&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/53845/duplicate-with-same-title-google-search-change-question-title</guid>
<pubDate>Fri, 23 Sep 2016 06:45:16 +0000</pubDate>
</item>
<item>
<title>is a backlink with question mark &quot;?&quot; in the url Useful ?</title>
<link>https://www.question2answer.org/qa/53657/is-a-backlink-with-question-mark-in-the-url-useful</link>
<description>I understand &amp;quot;?&amp;quot; kind of shows that it may be a dynamic URL. I can see a backlink from a URL to my own site but this URL has a &amp;quot;?&amp;quot; From moz bar tool i can see it's showing up neither follow nor no-follow. So not sure what to make out of it.&lt;br /&gt;
&lt;br /&gt;
1) My questions is that is this kind of back-link useful for SEO of my site?&lt;br /&gt;
&lt;br /&gt;
2) Sometimes a hyperlink shows just &amp;quot;external&lt;br /&gt;
&amp;nbsp;it's neither follow nor no-follow. Is this kind of backlink useful ?&lt;br /&gt;
&lt;br /&gt;
Vikas</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/53657/is-a-backlink-with-question-mark-in-the-url-useful</guid>
<pubDate>Wed, 07 Sep 2016 03:39:54 +0000</pubDate>
</item>
</channel>
</rss>