Rewrite URL on site

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?

+4
source share
1 answer

You need to use mod_rewrite , and here is the second one .

In your case, just create a .htaccess file in the root folder and write the following code

 RewriteEngine On RewriteRule ^([^/]*)\$ /index.php?page=$1 [L] 
+4
source

All Articles