we are using kohana 3.2 (PHP). Now our website have more language. we will pass the URL/language/public/. This path must be redirect to URL/public/. can you advise us.
en/public/white/css/en_style.css changed to /public/white/css/en_style.css
we are using kohana 3.2 (PHP). Now our website have more language. we will pass the URL/language/public/. This path must be redirect to URL/public/. can you advise us.
en/public/white/css/en_style.css changed to /public/white/css/en_style.css
You can use the following redirect in .htaccess :
RedirectMatch 302 ^/en/(.+)$ /$1
This will redirect
to
Change 302 to 301 (permanent redirect) when you are sure the redirect is working fine.