At
the point when you first open your site, you may see the additional
characters like ?i=1 toward the finish of your URL. This article
clarifies more about what causes it, and what can be done.
What causes the ?i=1 suffix?
This additional URL boundary is brought about by a security framework we use to ensure your site. This security framework guarantees that your site must be gotten to through normal internet browsers.What does the ?i=1 suffix do?
The ?i=1 suffix is a counter. At the point when you first burden your site, some Javascript will be sent to your program to check it can execute the code and store a treat. The page will at that point reload with the ?=1 addition. On the following solicitation, the worker checks if your program has the security framework treat. If not, your program will get another security challenge to set the treat once more, and be diverted to a URL with suffix ?i=2.In the event that the counter hits 3 and your program despite everything doesn't send a legitimate treat, you'll be diverted to a page with guidelines on the most proficient method to empower treats in your program. Thusly, your program won't stall out in a divert circle.
Would i be able to eliminate the ?i=1 URL suffix?
Yes, you would be able to remove the parameter by using the following steps:- Login to your Cpanel.
- Click on File Manager
- Right Click on .htaccess file and click edit
- Paste the code given below (DO NOT EDIT ANYTHING ELSE)
- Click on Save
Code:
RewriteCond %{QUERY_STRING} ^(.*)i=[^&]+(.*)$ [NC]
RewriteRule ^(.*)$ /$1?%1%2 [R=301,L]
Hope this article helps you.
If you face any difficulties, comment down below.
Comments
Post a Comment