Jump to content
[MUST READ] Forum Rules ×

?i=1 Should be Removed from the URL's


AA22Dev

Recommended Posts

32 minutes ago, Aqib said:

Hi, i think that /?i=1 must be removed from the url's as some times my website is redirect to /?i=3 where i was redirected to the google cookies page. and after that i had to close my browser and then open it again.

This feature was added to avoid bots, and there are no plans to remove it.

If you want to make it disappear for esthetic reasons, you can click here .

Link to comment
Share on other sites

On 2/25/2018 at 7:50 AM, PlanetCloud said:

Hi,

This /?i=1 thing cannot be removed because it is a server protection system to prevent bots from accessing your site (Excluded Google).
This will protect the server from overloaded and keeps the site fast.

The only way to remove this is to get a Premium account.

Thanks.

ok, thanks

Link to comment
Share on other sites

  • 4 months later...
On 2/25/2018 at 1:48 AM, Aqib said:

Hi, i think that /?i=1 must be removed from the url's as some times my website is redirect to /?i=3 where i was redirected to the google cookies page. and after that i had to close my browser and then open it again.

You might already know this, but you can disable it by using Cloudflare.

Link to comment
Share on other sites

On 24/2/2018 at 1:48 PM, Aqib said:

Hi, i think that /?i=1 must be removed from the url's as some times my website is redirect to /?i=3 where i was redirected to the google cookies page. and after that i had to close my browser and then open it again.

I remove it with javascript by applying this code on the page in the header or at the bottom of the page

<script type="text/javascript">
var searchWinHref = window.location.href;
   if(searchWinHref.indexOf("?i") > -1) { 
   window.location.href = window.location.href.split('?')[0];
   }
</script>

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...