there are such links on my website - http://example.com/index.php?page=about, and I want them to look like this - http://example.com/about
Is this possible, and if that's what I have to do to get this result?
You need to use mod_rewrite , and here is the second one .
mod_rewrite
In your case, just create a .htaccess file in the root folder and write the following code
.htaccess
RewriteEngine On RewriteRule ^([^/]*)\$ /index.php?page=$1 [L]