ERR_TOO_MANY_REDIRECTS Error

I need a help . When I access my website , it tells ERR_TOO_MANY_REDIRECTS . I need to fix it as fast as possible .

Hmmm it would help the admin if you provided more details.
I am sure something is up with your HTML code looping forever.

Usually, this is caused by a website generating an infinite redirect. It happens for example if you have .htaccess rules which force all traffic to the www. version of your domain but your website wants to redirect everyone to the non-www version of your domain. So you should probably check your website configuration first.

Sir , I am using the yetishare script (file hosting script) . I did all the things , also the installation . When I did all the things , I am not able to enter the site . It always tell ERR_TOO_MANY_REDIRECTS . This is my .htaccess file . Please Fix this and give it to me .

override max php upload settings. Might not work on all servers

#php_value upload_max_filesize 4000M
#php_value post_max_size 4000M

setup xsendfile if the module is enabled

XSendFile On SetEnv MOD_X_SENDFILE_ENABLED 1

disable mod security

#

SecFilterEngine Off

SecFilterScanPOST Off

#

redirect www to non-www

#RewriteCond %{HTTP_HOST} ^www\.(.)$ [NC]
#RewriteRule ^(.
)$ http://%1/$1 [R=301,L]

RewriteEngine On
#RewriteRule . - [E=no-gzip:1]
RewriteBase /

force https

#RewriteCond %{HTTPS} !=on
#RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

forward to install if it exists

RewriteCond %{DOCUMENT_ROOT}/install -d
RewriteCond %{REQUEST_URI} !(install) [NC]
RewriteRule ^(.*) /install/ [L,redirect=302]

forward app requests

#RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
RewriteRule ^app/(.*) plugins/webdav/site/control/$1 [QSA,L]

route everything via index.php if it doesn’t exist as a file

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?_page_url=$1 [QSA]

My url is nodefiles.rf.gd/yetishare

Now I have this problem ,

The nodefiles.rf.gd page isn’t working

nodefiles.rf.gd is currently unable to handle this request.
HTTP ERROR 500

The nodefiles.rf.gd page isn’t working

nodefiles.rf.gd is currently unable to handle this request.
HTTP ERROR 500

That’s usually caused by an issue in your .htaccess file. Please try to remove all lines and then add them back one by one to see which part is causing the issue.