Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+4 votes
603 views
in Q2A Core by
Hello
When the number of visitors increases more than 300 visitors the site becomes slow and stops
Knowing that the site does not consume a lot of server resources
by
What kind of hosting do you have?
by
godaddy vps Linux
Processor type 2x Intel E5-2630L v2
4 GB memory
120 GB storage
Unmetered bandwidth
3 dedicated IPs

I found the problem in the .htaccess file

RewriteCond% {HTTP_HOST}! ^ Www \.
RewriteRule ^ (. *) $ Https: //www.% {HTTP_HOST}% {REQUEST_URI} [L, R = 301]
RewriteCond% {HTTPS} off
RewriteRule ^ (. *) $ Https: //% {HTTP_HOST}% {REQUEST_URI} [L, R = 301]

Is there a code that works for redirecting to https: // www
by
if you see site loading issue then check access_log file, see if there are too many web crawler. You can try to block unwanted crawlers in robots.txt file.
by
I guess this should be some plugin issue.
by
Is the problem occurring at http://www.sa3dny.com/?
by
Yes I move to VPS and when I redirect visitors to https://www
The site is too slow to connect
by
What is the site URL? sa3dny.com works fine for me on http and https.
by
I found the problem in the .htaccess file

RewriteCond% {HTTP_HOST}! ^ Www \.
RewriteRule ^ (. *) $ Https: //www.% {HTTP_HOST}% {REQUEST_URI} [L, R = 301]
RewriteCond% {HTTPS} off
RewriteRule ^ (. *) $ Https: //% {HTTP_HOST}% {REQUEST_URI} [L, R = 301]

1 Answer

0 votes
by
I think you need to correct the purpose and settings of your site before investigating the cause of the slowdown.
...