I want to know how can I set the URL of a website in the form:
http://example.com/category/1/
instead of http://example.com/category.php?value=1
I have heard that the first style of URL is better in SEO and is more safe.
Further for second URL Style w set the url from first page as:http://example.com/category?value=$i
where $i
can be any value and on the category.php
page we get the value using the $value=$_GET['value'];
How can we do the same using the first URL STYLE?