I have a website which creates the following url
https://www.website.com/timings/result.php?city=Patna%2C+Bihar%2C+India&method=1
but I am willing to make it clean such as
https://www.website.com/timings/result/cityname or something similar.
Tried the following code but no luck.
RewriteEngine On
RewriteRule ^([a-zA-Z0-9]+)$ result.php?page=$1
RewriteRule ^([a-zA-Z0-9]+)/$ result.php?page=$1