Reputation: 11
I have uploaded file of wordpress and when i acces my domain giving this error... Error 310 (net::ERR_TOO_MANY_REDIRECTS): There were too many redirects.
Upvotes: 0
Views: 11252
Reputation: 471
I had this problem before. Try resetting your permalinks. Rewrite your .htaccess codes to:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
It should set it to default permalinks.
Upvotes: 0
Reputation: 26722
Few suggestions-
Check these points and let me know
Upvotes: 1