Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Basic PHP / htaccess URL Rewrite? Reply To: Basic PHP / htaccess URL Rewrite?

#148833
Presto
Participant

So I ended up creating a .htaccess file and adding the following to it. RewriteEngine On RewriteBase / RewriteRule ^([a-z]+).html$ index.php?page=$1 [L] Then to get it to work you just type in the URL i.e. /home.html and it works.

*** UPDATE: Never mind, that did not work after all, sigh