<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Question2Answer Q&amp;A - Recent questions tagged redirect</title>
<link>https://www.question2answer.org/qa/tag/redirect</link>
<description>Powered by Question2Answer</description>
<item>
<title>How to redirect 404 error, for Users page with plus (+) in URL to blank encoding (%20 )?</title>
<link>https://www.question2answer.org/qa/116020/how-redirect-404-error-for-users-page-with-plus-blank-encoding</link>
<description>Google search console error when upgrading to 1.8.8.</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/116020/how-redirect-404-error-for-users-page-with-plus-blank-encoding</guid>
<pubDate>Wed, 15 Jan 2025 16:43:10 +0000</pubDate>
</item>
<item>
<title>Some questions redirect to root</title>
<link>https://www.question2answer.org/qa/114620/some-questions-redirect-to-root</link>
<description>hi, some questions of my website redirect to root path /&lt;br /&gt;
&lt;br /&gt;
how I can find the cause?</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/114620/some-questions-redirect-to-root</guid>
<pubDate>Fri, 23 Aug 2024 22:00:51 +0000</pubDate>
</item>
<item>
<title>redirect For non-www to www</title>
<link>https://www.question2answer.org/qa/111689/redirect-for-non-www-to-www</link>
<description>redirect For non-www to www&lt;br /&gt;
&lt;br /&gt;
Via .htaccess&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;vps server&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;CYBERPANEL control panel&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;I ask those with experience to advise me... Thank you in advance</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/111689/redirect-for-non-www-to-www</guid>
<pubDate>Sat, 16 Dec 2023 20:05:17 +0000</pubDate>
</item>
<item>
<title>All activity page as homepage after login</title>
<link>https://www.question2answer.org/qa/104459/all-activity-page-as-homepage-after-login</link>
<description>Is there a way . To make all activity page as homepage only after when the user login . &lt;br /&gt;
&lt;br /&gt;
And back to recent question answer as homepage after they logout</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/104459/all-activity-page-as-homepage-after-login</guid>
<pubDate>Fri, 04 Nov 2022 10:42:51 +0000</pubDate>
</item>
<item>
<title>Deleting accounts that are logged in: Possible to redirect users on delete?</title>
<link>https://www.question2answer.org/qa/102452/deleting-accounts-that-logged-possible-redirect-users-delete</link>
<description>I am writing a plugin that involves deleting user accounts. These users may or may not be logged in when their account is deleted. If they are logged in when this happens, the next time they attempt to access the site they are redirected and an error message displays at the top of the screen about accessing a null value. I know how to resolve the error message, as that function is overridable, but I would like to see if an alternative approach is available.&lt;br /&gt;
&lt;br /&gt;
Is it possible to forcefully redirect a logged in user to a specific webpage? I have the userid if the account(s) that get deleted, so would it be possible to use a modification of qa_redirect() to force their browsers to update and take them to another web page? This would absolve the issue, and allow me to redirect them to a custom page explaining why their account has been removed.</description>
<category>Plugins</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/102452/deleting-accounts-that-logged-possible-redirect-users-delete</guid>
<pubDate>Tue, 19 Jul 2022 13:44:59 +0000</pubDate>
</item>
<item>
<title>Php load site based on cookie</title>
<link>https://www.question2answer.org/qa/100012/php-load-site-based-on-cookie</link>
<description>

&lt;p&gt;Hello there,&lt;/p&gt;

&lt;p&gt;I need to load site based on cookie, i write code to validate that like this.&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#c586c0&quot;&gt;if&lt;/span&gt;(!&lt;span style=&quot;color:#dcdcaa&quot;&gt;isset&lt;/span&gt;(&lt;span style=&quot;color:#9cdcfe&quot;&gt;$_COOKIE&lt;/span&gt;[&lt;span style=&quot;color:#ce9178&quot;&gt;'cookie'&lt;/span&gt;])){&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#9cdcfe&quot;&gt;$domain&lt;/span&gt; = &lt;span style=&quot;color:#9cdcfe&quot;&gt;$_SERVER&lt;/span&gt;[&lt;span style=&quot;color:#ce9178&quot;&gt;'SERVER_NAME'&lt;/span&gt;];&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#dcdcaa&quot;&gt;setcookie&lt;/span&gt;(&lt;span style=&quot;color:#ce9178&quot;&gt;'cookie'&lt;/span&gt;, &lt;span style=&quot;color:#9cdcfe&quot;&gt;$cookie&lt;/span&gt;, &lt;span style=&quot;color:#dcdcaa&quot;&gt;time&lt;/span&gt;() + &lt;span style=&quot;color:#b5cea8&quot;&gt;31536000&lt;/span&gt;, &lt;span style=&quot;color:#ce9178&quot;&gt;'/'&lt;/span&gt;, &lt;span style=&quot;color:#9cdcfe&quot;&gt;$domain&lt;/span&gt;);&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#dcdcaa&quot;&gt;header&lt;/span&gt;(&lt;span style=&quot;color:#ce9178&quot;&gt;'Location: '&lt;/span&gt;.&lt;span style=&quot;color:#9cdcfe&quot;&gt;$_SERVER&lt;/span&gt;[&lt;span style=&quot;color:#ce9178&quot;&gt;'REQUEST_URI'&lt;/span&gt;]); &lt;span style=&quot;color:#6a9955&quot;&gt;// reload&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;}&lt;/p&gt;

&lt;p&gt;But when cookie created first time i got error.&lt;/p&gt;

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

&lt;p&gt;&lt;span style=&quot;color:#000000; font-family:Helvetica Neue&quot;&gt;&lt;span style=&quot;font-size:13px&quot;&gt;I think&amp;nbsp;header('Location: '.$_SERVER['REQUEST_URI']); execute multiple times, How to fix this ? its that right way to do ? or any other thing i need to change ?&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000; font-family:Helvetica Neue&quot;&gt;&lt;span style=&quot;font-size:13px&quot;&gt;Please advise, Thank you&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/100012/php-load-site-based-on-cookie</guid>
<pubDate>Wed, 09 Mar 2022 14:59:21 +0000</pubDate>
</item>
<item>
<title>How to redirect 404 to home page?</title>
<link>https://www.question2answer.org/qa/96534/how-to-redirect-404-to-home-page</link>
<description>When I Delete Duplicate Question Than Showing 404 (Not. Found).&lt;br /&gt;
&lt;br /&gt;
How to Redirect All 404 To Home Page Directly.</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/96534/how-to-redirect-404-to-home-page</guid>
<pubDate>Tue, 28 Sep 2021 07:45:35 +0000</pubDate>
</item>
<item>
<title>How to redirect newly registered/ confirmed user to questions list page?</title>
<link>https://www.question2answer.org/qa/91962/redirect-newly-registered-confirmed-user-questions-list-page</link>
<description>After a newly registered user's email has been confirmed, how can I redirect them to the question list page after 5 seconds automatically, instead of staying on the page that says &amp;quot;your email has been confirmed&amp;quot;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/91962/redirect-newly-registered-confirmed-user-questions-list-page</guid>
<pubDate>Thu, 25 Mar 2021 14:04:06 +0000</pubDate>
</item>
<item>
<title>redirect traffic, dr , ur takes how long ?</title>
<link>https://www.question2answer.org/qa/77103/redirect-traffic-dr-ur-takes-how-long</link>
<description>i'm planning to redirect my site to another domain, i just want to know estimated time for the traffic and rank on search engine to be redirected to my new domain..</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/77103/redirect-traffic-dr-ur-takes-how-long</guid>
<pubDate>Sun, 11 Aug 2019 06:01:21 +0000</pubDate>
</item>
<item>
<title>Support query strings for user profile redirects</title>
<link>https://www.question2answer.org/qa/75988/support-query-strings-for-user-profile-redirects</link>
<description>

&lt;p&gt;I think user profile redirect might be improved a bit. Now I'm facing the following problem:&lt;/p&gt;

&lt;hr&gt;

&lt;p&gt;In the latest version of Q2A, when I go to the URL
&lt;br&gt;&lt;strong&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/strong&gt;&lt;em&gt;https://mysite/user&lt;/em&gt;
&lt;br&gt;it should redirect to
&lt;br&gt;&lt;strong&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/strong&gt;&lt;em&gt;https://mysite/user/my-username&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Supposing&amp;nbsp;I've installed the&amp;nbsp;&lt;a rel=&quot;nofollow&quot; href=&quot;https://github.com/NoahY/q2a-privileges&quot;&gt;q2a-privileges plugin&lt;/a&gt;&amp;nbsp;on my Q2A installation, the privileges tab will be available via &lt;em&gt;http://mysite/user/my-username?tab=privileges&lt;/em&gt;. If I access the URL
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;em&gt;https://mysite/user?tab=privileges&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;it should go to&lt;/p&gt;

&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;em&gt;https://mysite/user/my-username?tab=privileges&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;and so on for every URL query string.&lt;/p&gt;

&lt;hr&gt;

&lt;p&gt;I know that by accessing &lt;em&gt;https://mysite/user&lt;/em&gt;, I get automatically redirected &lt;em&gt;https://mysite/user/my-username&lt;/em&gt;. However, if I insert a URL query string, it will be &lt;strong&gt;lost&lt;/strong&gt; during redirect.&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;So the questions are:&lt;/p&gt;

&lt;ul&gt;

&lt;li&gt;May query strings be kept when handling such redirects?&lt;/li&gt;

&lt;li&gt;If it is not possible, does exist there an alternative to achieve such redirect, while keeping query strings&amp;nbsp;(using only HTML)?&lt;/li&gt;&lt;/ul&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/75988/support-query-strings-for-user-profile-redirects</guid>
<pubDate>Sun, 23 Jun 2019 19:39:31 +0000</pubDate>
</item>
<item>
<title>why doesn't working properly ssl Certificate ?</title>
<link>https://www.question2answer.org/qa/71982/why-doesnt-working-properly-ssl-certificate</link>
<description>

&lt;p&gt;I have&amp;nbsp;Installed SSL Certificate and&amp;nbsp;redirect&amp;nbsp;&lt;a href=&quot;http://www.example.com/&quot; rel=&quot;nofollow&quot;&gt;http://www.example.com/&lt;/a&gt; to &lt;a href=&quot;https://www.example.com/&quot; rel=&quot;nofollow&quot;&gt;https://www.example.com/&lt;/a&gt; ......&lt;/p&gt;

&lt;p&gt;https:// working fine home page.&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=5999728400555600736&quot; style=&quot;height:37px; width:380px&quot;&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;but queestion&amp;nbsp;page doesn't working properly ....&amp;nbsp;&lt;img title=&quot;crying&quot; alt=&quot;crying&quot; src=&quot;https://www.question2answer.org/qa/qa-plugin/wysiwyg-editor/ckeditor/plugins/smiley/images/cry_smile.png&quot; style=&quot;height:23px; width:23px&quot;&gt;&lt;img title=&quot;crying&quot; alt=&quot;crying&quot; src=&quot;https://www.question2answer.org/qa/qa-plugin/wysiwyg-editor/ckeditor/plugins/smiley/images/cry_smile.png&quot; style=&quot;height:23px; width:23px&quot;&gt;&lt;/p&gt;

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

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;how can I do solve&amp;nbsp;it?&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/71982/why-doesnt-working-properly-ssl-certificate</guid>
<pubDate>Sat, 19 Jan 2019 02:38:08 +0000</pubDate>
</item>
<item>
<title>from http to https plugin</title>
<link>https://www.question2answer.org/qa/71683/from-http-to-https-plugin</link>
<description>Can someone please make this plugin if possible.&lt;br /&gt;
&lt;br /&gt;
A plugin that should be able to convert all q2a urls to use https by default</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/71683/from-http-to-https-plugin</guid>
<pubDate>Tue, 08 Jan 2019 08:54:14 +0000</pubDate>
</item>
<item>
<title>Rewrite none www to www htaccess</title>
<link>https://www.question2answer.org/qa/68074/rewrite-none-www-to-www-htaccess</link>
<description>

&lt;p&gt;Here is my current .htaccess, Apache version&amp;nbsp;&lt;span style=&quot;background-color:rgb(252, 252, 252); color:rgb(79, 88, 96); font-family:open sans,sans-serif; font-size:14px&quot;&gt;2.4.34 my www.satechhelp.co.za&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;DirectoryIndex index.php
&lt;br&gt;&amp;lt;IfModule mod_rewrite.c&amp;gt;
&lt;br&gt;RewriteEngine On
&lt;br&gt;#RewriteBase /
&lt;br&gt;RewriteCond %{REQUEST_URI} ^(.*)//(.*)$
&lt;br&gt;RewriteRule . %1/%2 [R=301,L]
&lt;br&gt;RewriteCond %{REQUEST_FILENAME} !-f
&lt;br&gt;RewriteCond %{REQUEST_FILENAME} !-d
&lt;br&gt;RewriteRule ^.*$ index.php?qa-rewrite=$0&amp;amp;%{QUERY_STRING} [L]
&lt;br&gt;&amp;lt;/IfModule&amp;gt;&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/68074/rewrite-none-www-to-www-htaccess</guid>
<pubDate>Wed, 10 Oct 2018 08:52:17 +0000</pubDate>
</item>
<item>
<title>how to redirect http to https in subdomain</title>
<link>https://www.question2answer.org/qa/68061/how-to-redirect-http-to-https-in-subdomain</link>
<description>

&lt;p&gt;I have a q2a site in subdomain like &lt;span style=&quot;background-color:#D3D3D3&quot;&gt;&lt;a href=&quot;http://subdomain.example.com&quot; rel=&quot;nofollow&quot;&gt;http://subdomain.example.com&lt;/a&gt;&lt;/span&gt;.&lt;/p&gt;

&lt;p&gt;I have ssl certificate enabled. How can I redirect links to &lt;span style=&quot;background-color:#D3D3D3&quot;&gt;&lt;a href=&quot;https://subdomain.example.com&quot; rel=&quot;nofollow&quot;&gt;https://subdomain.example.com&lt;/a&gt;&amp;nbsp;&lt;/span&gt;&amp;nbsp;using .htaccess?&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;Thanks&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/68061/how-to-redirect-http-to-https-in-subdomain</guid>
<pubDate>Wed, 10 Oct 2018 06:52:03 +0000</pubDate>
</item>
<item>
<title>How to fix page with redirect?</title>
<link>https://www.question2answer.org/qa/66507/how-to-fix-page-with-redirect</link>
<description>

&lt;p&gt;&lt;span style=&quot;font-family: roboto, arial, sans-serif; color: rgba(0,;&quot;&gt;&lt;span style=&quot;font-size:15px&quot;&gt;Here are redirected link?&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:rgba(0, 0, 0, 0.87); font-family:roboto,arial,sans-serif; font-size:15px&quot;&gt;&lt;a href=&quot;http://www.satechhelp.co.za/index.php/18437/27150/Hard-reset-mobicel-force?show=27152&quot; rel=&quot;nofollow&quot;&gt;http://www.satechhelp.co.za/index.php/18437/27150/Hard-reset-mobicel-force?show=27152&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:rgba(0, 0, 0, 0.87); font-family:roboto,arial,sans-serif; font-size:15px&quot;&gt;&lt;a href=&quot;http://www.satechhelp.co.za/index.php/15003/tag/27064/Forgot-password-verssed?show=27067&quot; rel=&quot;nofollow&quot;&gt;http://www.satechhelp.co.za/index.php/15003/tag/27064/Forgot-password-verssed?show=27067&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:rgba(0, 0, 0, 0.87); font-family:roboto,arial,sans-serif; font-size:15px&quot;&gt;&lt;a href=&quot;http://www.satechhelp.co.za/index.php/15003/tag/27075/Pension-capitec-account?show=27076&quot; rel=&quot;nofollow&quot;&gt;http://www.satechhelp.co.za/index.php/15003/tag/27075/Pension-capitec-account?show=27076&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/66507/how-to-fix-page-with-redirect</guid>
<pubDate>Wed, 22 Aug 2018 07:59:09 +0000</pubDate>
</item>
<item>
<title>Suddenly Email Notifications Going to Spam for All Users!</title>
<link>https://www.question2answer.org/qa/66116/suddenly-email-notifications-going-to-spam-for-all-users</link>
<description>

&lt;p&gt;Hi there,&lt;/p&gt;

&lt;p&gt;The email notification was delivering smoothly for a year but suddenly all notifications have been redirected to spam/trash folder of mine and other users' inboxes. What could be the reason?&amp;nbsp;&lt;/p&gt;

&lt;p&gt;I have not changed any of the settings of my server or my site for at least a year. I have been using no-reply address with no SMTP setting.&amp;nbsp;
&lt;br&gt;
&lt;br&gt;&lt;a rel=&quot;nofollow&quot; href=&quot;http://www.noorpods.com/&quot;&gt;This is&lt;/a&gt;&amp;nbsp;my site.&lt;/p&gt;

&lt;p&gt;Thank you&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/66116/suddenly-email-notifications-going-to-spam-for-all-users</guid>
<pubDate>Fri, 10 Aug 2018 20:00:35 +0000</pubDate>
</item>
<item>
<title>Htaccess wordpress redirect chain PLS HELP</title>
<link>https://www.question2answer.org/qa/65716/htaccess-wordpress-redirect-chain-pls-help</link>
<description>Hello,&lt;br /&gt;
I am struggling for some time to solve the redirect chain that WordPress is making and I didn't find yet any solutions.&lt;br /&gt;
here is my htaccess:&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;lt;IfModule mod_rewrite.c&amp;gt;&lt;br /&gt;
Options +FollowSymLinks&lt;br /&gt;
RewriteEngine On&lt;br /&gt;
RewriteCond %{HTTPS} off&lt;br /&gt;
&lt;br /&gt;
RewriteRule ^(.*)$https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]&lt;br /&gt;
RewriteCond %{HTTP_USER_AGENT} ^(.+)$&lt;br /&gt;
RewriteCond %{SERVER_NAME} ^example\.com$&lt;br /&gt;
RewriteCond %{SERVER_NAME} ^www\.example\.com$&lt;br /&gt;
RewriteRule .*https://%{SERVER_NAME}%{example} [R=301,L]&lt;br /&gt;
Header add Strict-Transport-Security &amp;quot;max-age=300&amp;quot;&lt;br /&gt;
&amp;lt;/IfModule&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;IfModule mod_rewrite.c&amp;gt;&lt;br /&gt;
RewriteEngine On&lt;br /&gt;
RewriteBase /&lt;br /&gt;
RewriteRule ^index\.php$ - [L]&lt;br /&gt;
RewriteCond %{REQUEST_FILENAME} !-f&lt;br /&gt;
RewriteCond %{REQUEST_FILENAME} !-d&lt;br /&gt;
RewriteRule . /index.php [L]&lt;br /&gt;
&amp;lt;/IfModule&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For now makes the redirect chain:&lt;br /&gt;
&lt;a href=&quot;http://www.example.com/dir/product/&quot; rel=&quot;nofollow&quot;&gt;http://www.example.com/dir/product/&lt;/a&gt;&lt;br /&gt;
301 Moved Permanently&lt;br /&gt;
&lt;a href=&quot;https://www.example.com/dir/product/&quot; rel=&quot;nofollow&quot;&gt;https://www.example.com/dir/product/&lt;/a&gt;&lt;br /&gt;
301 Moved Permanently&lt;br /&gt;
&lt;a href=&quot;https://www.example.com/product/&quot; rel=&quot;nofollow&quot;&gt;https://www.example.com/product/&lt;/a&gt;&lt;br /&gt;
200 OK&lt;br /&gt;
&lt;br /&gt;
The idea is to pass those redirect chains and if you could help me out I would really appreciate&lt;br /&gt;
&lt;br /&gt;
The idea is to redirect dir to dir/ dir to product and product to product without a redirect chain&lt;br /&gt;
&lt;br /&gt;
Kind regards</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/65716/htaccess-wordpress-redirect-chain-pls-help</guid>
<pubDate>Mon, 30 Jul 2018 07:40:56 +0000</pubDate>
</item>
<item>
<title>I cannot give redirect URL at live and yahoo developer</title>
<link>https://www.question2answer.org/qa/63936/i-cannot-give-redirect-url-at-live-and-yahoo-developer</link>
<description>im using open login plugin while i giving Redirect URL at yahoo and live it showing following error&lt;br /&gt;
&lt;br /&gt;
https://Site_name.com/?hauth.done=Live&lt;br /&gt;
&lt;br /&gt;
https://Site_name.com/?hauth.done=yahoo&lt;br /&gt;
&lt;br /&gt;
Error:Your URL must begin with https://, have no query string parameters, and limited to 255 characters.&lt;br /&gt;
&lt;br /&gt;
so live and yahoo is not accepted special character values ?</description>
<category>Plugins</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/63936/i-cannot-give-redirect-url-at-live-and-yahoo-developer</guid>
<pubDate>Sun, 13 May 2018 14:40:51 +0000</pubDate>
</item>
<item>
<title>htaccess redirect pretty url problem</title>
<link>https://www.question2answer.org/qa/62946/htaccess-redirect-pretty-url-problem</link>
<description>

&lt;p style=&quot;text-align:left&quot;&gt;I am using the redirect HTTP to HTTPS with /123/why-do-birds-sing (requires&amp;nbsp;htaccess&amp;nbsp;file) URL structure&lt;/p&gt;

&lt;p style=&quot;text-align:left&quot;&gt;The redirect work good with www (&lt;a rel=&quot;nofollow&quot; href=&quot;https://www.tshuva2sheela.com/&quot;&gt;https://www.tshuva2sheela.com/&lt;/a&gt;) in Firefox and crhome. But the redirect does not work without www (&lt;a rel=&quot;nofollow&quot; href=&quot;https://tshuva2sheela.com/&quot;&gt;https://tshuva2sheela.com/&lt;/a&gt;) in Firefox but work in chrome.&lt;/p&gt;

&lt;p style=&quot;text-align:left&quot;&gt;My htaccess file:&lt;/p&gt;

&lt;p&gt;Options -Indexes
&lt;br&gt;DirectoryIndex index.php&lt;/p&gt;

&lt;p&gt;&amp;lt;IfModule mod_rewrite.c&amp;gt;
&lt;br&gt;RewriteEngine On&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;#RewriteBase /
&lt;br&gt;RewriteRule ^(files)($|/) - [L]
&lt;br&gt;RewriteCond %{REQUEST_URI} ^(.*)//(.*)$
&lt;br&gt;RewriteRule . %1/%2 [R=301,L]
&lt;br&gt;&amp;nbsp;&lt;/p&gt;

&lt;p&gt;
&lt;br&gt;RewriteCond %{HTTPS} off&amp;nbsp;
&lt;br&gt;RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;RewriteCond %{REQUEST_FILENAME} !-f
&lt;br&gt;RewriteCond %{REQUEST_FILENAME} !-d
&lt;br&gt;RewriteRule ^.*$ index.php?qa-rewrite=$0&amp;amp;%{QUERY_STRING} [L]
&lt;br&gt;&amp;lt;/IfModule&amp;gt;&lt;/p&gt;

&lt;p&gt;# BEGIN GZIP&amp;nbsp;
&lt;br&gt;&amp;lt;ifmodule mod_deflate.c&amp;gt;&amp;nbsp;
&lt;br&gt;AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x-javascript application/javascript&amp;nbsp;
&lt;br&gt;&amp;lt;/ifmodule&amp;gt;&amp;nbsp;
&lt;br&gt;# END GZIP&lt;/p&gt;

&lt;p style=&quot;text-align:left&quot;&gt;Thank for the help and sorry for my English.&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/62946/htaccess-redirect-pretty-url-problem</guid>
<pubDate>Sun, 18 Mar 2018 03:04:53 +0000</pubDate>
</item>
<item>
<title>301 redirect partial to full url (not a 302)</title>
<link>https://www.question2answer.org/qa/62200/301-redirect-partial-to-full-url-not-a-302</link>
<description>

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

&lt;p&gt;This partial url:&lt;/p&gt;

&lt;p&gt;&lt;em&gt;learn-greek-online.com/ask-greek/442/&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;gives a 302 redirect to this full url:&lt;/p&gt;

&lt;p&gt;&lt;em&gt;learn-greek-online.com/ask-greek/442/lexicon-can-you-tell-what-the-abbreviation-apollod-stands-for&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;a rel=&quot;nofollow&quot; href=&quot;https://serving.photos.photobox.com/79334019fc09c6678dd8c0f173284a30cb27cca19f999959dd5cd5663d2ba974ce3b3b57.jpg&quot;&gt;&lt;img alt=&quot;&quot; src=&quot;https://serving.photos.photobox.com/79334019fc09c6678dd8c0f173284a30cb27cca19f999959dd5cd5663d2ba974ce3b3b57.jpg&quot; style=&quot;height:590px; width:920px&quot;&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This is done from core Q2A.&lt;/p&gt;

&lt;p&gt;I would like to &lt;strong&gt;make those redirects to be 301, instead of 302.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;What file/code should I change please?&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/62200/301-redirect-partial-to-full-url-not-a-302</guid>
<pubDate>Sat, 03 Feb 2018 09:52:46 +0000</pubDate>
</item>
</channel>
</rss>