let say i want to have a url exactly like below
- Code: Select all
http://localhost/en/about_us
en is actually the language and about_us is the page
How to write a RewriteRule so that in my php file, i can get these 2 values using $_GET, for example;
- Code: Select all
$_GET['lang'] = 'en';
$_GET['page'] = 'about_us';
Thank you in advance.

