htaccess修改破坏了Firefox URL

htaccess修改破坏了Firefox URL,firefox,.htaccess,repeat,Firefox,.htaccess,Repeat,我正在处理一个.htaccess文件以实现简单的重定向,这时我意识到使用插件(在WordPress中)会更易于管理。问题是,我删除了我所做的所有.htaccess更改,但我仍然在Firefox中得到一个重定向循环。如果我输入: http://example.com/ 我明白了 但在其他浏览器中,它工作正常,它重定向到:http://example.com/store 我已经删除了所有的饼干,但没有运气。有人知道为什么只有Firefox才会出现这种情况吗 更新 以下是.htaccess请求。我很

我正在处理一个.htaccess文件以实现简单的重定向,这时我意识到使用插件(在WordPress中)会更易于管理。问题是,我删除了我所做的所有.htaccess更改,但我仍然在Firefox中得到一个重定向循环。如果我输入:

http://example.com/
我明白了

但在其他浏览器中,它工作正常,它重定向到:
http://example.com/store

我已经删除了所有的饼干,但没有运气。有人知道为什么只有Firefox才会出现这种情况吗

更新

以下是.htaccess请求。我很确定这是WordPress自动生成的,但这不是我的项目,所以我可能错了:

RewriteEngine on

suphp_configpath /home/naokei5/public_html

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

RewriteCond %{HTTP_HOST} ^naokeidoe.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.naokeidoe.com$
RewriteRule ^/?$ "http\:\/\/naokeidoecreations\.com" [R=301,L]

RewriteCond %{HTTP_HOST} ^naokeidoenatural.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.naokeidoenatural.com$
RewriteRule ^/?$ "http\:\/\/naokeidoecreations\.com" [R=301,L]

RewriteCond %{HTTP_HOST} ^naokeidoestyle.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.naokeidoestyle.com$
RewriteRule ^/?$ "http\:\/\/naokeidoecreations\.com" [R=301,L]

RewriteCond %{HTTP_HOST} ^naokeidoehome.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.naokeidoehome.com$
RewriteRule ^/?$ "http\:\/\/naokeidoecreations\.com" [R=301,L]
重新编写引擎打开
suphp\u configpath/home/naokei5/public\u html
重新启动发动机
重写基/
重写规则^index\.php$-[L]
重写cond%{REQUEST_FILENAME}-F
重写cond%{REQUEST_FILENAME}-D
重写规则/index.php[L]
RewriteCond%{HTTP_HOST}^naokiedoe.com$[或]
重写cond%{HTTP_HOST}^www.naokiedoe.com$
重写规则^/?$“http\:\/\/naokiedoecreations\.com”[R=301,L]
RewriteCond%{HTTP_HOST}^naokiedoenatural.com$[或]
重写cond%{HTTP_HOST}^www.naokiedoenatural.com$
重写规则^/?$“http\:\/\/naokiedoecreations\.com”[R=301,L]
RewriteCond%{HTTP_HOST}^naokiedoestyle.com$[或]
重写cond%{HTTP_HOST}^www.naokiedoestyle.com$
重写规则^/?$“http\:\/\/naokiedoecreations\.com”[R=301,L]
RewriteCond%{HTTP_HOST}^naokiedoehome.com$[或]
重写cond%{HTTP_HOST}^www.naokiedoehome.com$
重写规则^/?$“http\:\/\/naokiedoecreations\.com”[R=301,L]

另外,我刚刚在另一台PC上的另一个Firefox上测试了它,重定向也可以正常工作。它只在我的笔记本电脑Firefox上,我可以在没有结果的情况下重新启动浏览器。

请发布您的.htaccess。1)Firefox->Options->Advanced->Network->Clear Cache 2)重新启动Firefox。3) 重写规则很好——出于某种原因,它是你的浏览器。
RewriteEngine on

suphp_configpath /home/naokei5/public_html

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

RewriteCond %{HTTP_HOST} ^naokeidoe.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.naokeidoe.com$
RewriteRule ^/?$ "http\:\/\/naokeidoecreations\.com" [R=301,L]

RewriteCond %{HTTP_HOST} ^naokeidoenatural.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.naokeidoenatural.com$
RewriteRule ^/?$ "http\:\/\/naokeidoecreations\.com" [R=301,L]

RewriteCond %{HTTP_HOST} ^naokeidoestyle.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.naokeidoestyle.com$
RewriteRule ^/?$ "http\:\/\/naokeidoecreations\.com" [R=301,L]

RewriteCond %{HTTP_HOST} ^naokeidoehome.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.naokeidoehome.com$
RewriteRule ^/?$ "http\:\/\/naokeidoecreations\.com" [R=301,L]