user7173077
user7173077

Reputation:

How to rewrite url with 1 parameter

How to rewrite this links?

from

http://www.example.com/websitedevelopment.php?lan=en

to

http://www.example.com/websitedevelopment/en

and

http://www.example.com/index.php?lan=en

to

http://www.example.com/en

thanks..

Upvotes: 0

Views: 57

Answers (1)

Abhishek Gurjar
Abhishek Gurjar

Reputation: 7476

Try with below,

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^websitedevelopment/en$ websitedevelopment.php?lan=en [L]
RewriteRule ^en$ index.php?lan=en [L]

Upvotes: 1

Related Questions