I stupidly made a 301 redirect to websiteA.com on websiteB.com. After removing from the .htaccess file, redirection still works. I tried from outside the local network and it is still being redirected. I cleared my cache and tried a different browser.
Does anyone have any suggestions?
UPDATE:
If I add a 302 redirect to this .htaccess file, the site will appreciate it. When I delete it, the old 301 is still redirecting.
.htaccess file for websiteA.com:
# -- concrete5 urls start -- Options -Indexes <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L] </IfModule> # -- concrete5 urls end -- #RewriteCond %{HTTP_HOST} ^.*$ #RewriteRule ^/?$ "http\:\/\/www\.websiteB\.co\.uk\/" [R=301,L]
beingalex
source share