S
S
siliconbaba2014-11-02 15:22:43
safari
siliconbaba, 2014-11-02 15:22:43

How to make a redirect work in Safari?

I have a website with two domains example.com and example.ru.
The task was to make a redirect from .com to .ru. I did it in the easiest way. Worked everywhere except Safari. I started messing with .htaccess, nothing helps, I returned the file to its original state:

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

After that, no transitions should have remained, but the redirect is still executed. Please tell me about the safari and these consequences.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
T
toxa82, 2014-11-02
@toxa82

This is a server side and is not browser dependent. Most likely the browser gives a cached response.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question