php - How to redirect the URL/public/language to URL/public -


we using kohana 3.2 (php). our website have more language. pass url/language/public/. path must redirect url/public/. can advise us.

en/public/white/css/en_style.css changed /public/white/css/en_style.css  

you can use following redirect in .htaccess :

redirectmatch 302 ^/en/(.+)$ /$1 

this redirect

  • /en/foo/bar

to

  • /foo/bar

change 302 301 (permanent redirect) when sure redirect working fine.


Comments

Popular posts from this blog

android - net_scheduler holding wakelock -

sql - MySQL : Getting Entries from a many-to-many table -

java - Retrieving data from database using jsp (Hibernate + Spring + Maven) -