C
C
Curgun2018-09-11 08:13:02
Magento
Curgun, 2018-09-11 08:13:02

How to fix invalid redirect in magento?

When you go to the /healthy-recipes/ or /about/ page, it redirects to links like

healthy-recipes/////////////////////?healthy-recipes/&healthy-recipes/&healthy-recipes/&healthy-recipes/&healthy-recipes/&healthy-recipes/&healthy-recipes/&healthy-recipes/&healthy-recipes/&healthy-recipes/&healthy-recipes/&healthy-recipes/&healthy-recipes/&healthy-recipes/&healthy-recipes/&healthy-recipes/&healthy-recipes/&healthy-recipes/&healthy-recipes/&healthy-recipes/

Nothing unusual in .htaccess
DirectoryIndex index.php
RewriteEngine on
RewriteCond $1 !^(index\.php|(.*)\.swf|forums|images|css|downloads|js|robots\.txt|favicon\.ico)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ ./index.php?$1 [L,QSA]
SetEnvIf HTTPS On HTTPS=on

SetEnv MAGE_IS_DEVELOPER_MODE true

RewriteCond %{HTTP_HOST} uk\.amazonia\.organic [NC]
RewriteRule .* - [E=MAGE_RUN_CODE:uk]
RewriteCond %{HTTP_HOST} uk\.amazonia\.organic [NC]
RewriteRule .* - [E=MAGE_RUN_TYPE:website]

RewriteCond %{HTTP_HOST} es\.amazonia\.organic [NC]
RewriteRule .* - [E=MAGE_RUN_CODE:espana]
RewriteCond %{HTTP_HOST} es\.amazonia\.organic [NC]
RewriteRule .* - [E=MAGE_RUN_TYPE:website]

RewriteCond %{HTTP_HOST} retail\.amazonia\.organic [NC] 
RewriteRule .* - [E=MAGE_RUN_CODE:retail] 
RewriteCond %{HTTP_HOST} retail\.amazonia\.organic [NC] 
RewriteRule .* - [E=MAGE_RUN_TYPE:website]

RewriteCond %{HTTP_HOST} gr\.amazonia\.organic [NC] 
RewriteRule .* - [E=MAGE_RUN_CODE:greek] 
RewriteCond %{HTTP_HOST} greek\.amazonia\.organic [NC] 
RewriteRule .* - [E=MAGE_RUN_TYPE:website]

SetEnvIf Host beta\.amazonia\.organic MAGE_RUN_CODE=beta
#SetEnvIf Host old\.amazonia\.organic MAGE_RUN_CODE=old

Redirect 301 /amazonia-acai-pure-smoothie-pack-nmb-60-x-100g /acai-range/acai-pure
Redirect 301 /amazonia-acai-energy-smoothie-pack-nmb-60-x-100g /acai-range/amazonia-acai-energy

<IfModule mod_headers.c>
  <FilesMatch "\.(ttf|ttc|otf|eot|woff|font.css)$">
    Header set Access-Control-Allow-Origin "*" 
  </FilesMatch>
</IfModule>

Nothing in URL Rewrite MANagement either. concerning these urls, did not find. The pages themselves. Dropped cache.
/var/cache cleaned
Help me find a solution, or at least where to dig

Answer the question

In order to leave comments, you need to log in

1 answer(s)
C
CodeKeeper, 2018-09-11
@Curgun

Magento has a separate table I would start digging from here https://docs.magento.com/m1/ce/user_guide/search_s...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question