简体   繁体   中英

htaccess url folder redirect

I am trying to change my url to try to stop it from showing the language folder in the url for example:

change from www.site.com/en

change to www.site.com

so I am looking to remove the

en

from the url but still accessing that directory. This is what I have so far but it does not seem to do the trick:

RewriteEngine on
RewriteBase /mysite/

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .+ en=$0 [L,QSA]

Thank you.

This should do it:

RewriteEngine on

RewriteBase /mysite/

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^(.*)$ en/$1 [L,QSA]

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM