zohaibbadarpura
zohaibbadarpura

Reputation: 25

Htaccess add word to URL

htaccess Expert Needed ???

How to make URL like this

Before : zohaibbadarpura.com/anypage

After : zohaibbadarpura.com/eng/anypage ?

I tried many thing but could find any to make this possible with simple because I am not expert at "htaccess" Thanks in advance.

Tried

<IfModule mod_rewrite.c>
  RewriteEngine on
  RewriteRule /? eng/ [R=301,L] # Force people to the "eng" folder 
  RewriteRule eng/?$ index.html # Make "eng" load the index
</IfModule> 

Upvotes: 0

Views: 561

Answers (1)

anubhava
anubhava

Reputation: 785276

Try this rule:

RewriteEngine on

# Force people to the "eng" folder
RewriteRule !^eng/ /eng%{REQUEST_URI} [NC,L] 

Upvotes: 2

Related Questions