Error 310 (net::ERR_TOO_MANY_REDIRECTS):

后端 未结 2 541
再見小時候
再見小時候 2021-01-12 03:06

I am not getting this error on my local host, only when i upload to my server does this error appear, on one of my pages. any idea what i need to change?

2条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-12 03:24

    localhost and web-servers are different path for your files so you need to edit .htaccess file for get actual base-path and add this line of code int it

    RewriteEngine On
    
    # Some hosts may require you to use the `RewriteBase` directive.
    # If you need to use the `RewriteBase` directive, it should be the
    # absolute physical path to the directory that contains this htaccess file.
    RewriteBase (your physical path)
    
    .......
    

    its all about .htaccess error

提交回复
热议问题