Hey guys!
I have a page with a RewriteRule that makes my code: /?p=page will be rewritten like: abc.com/page, but I really want to have more sites under that, and at the moment I have this code in my .htaccess file.
Right now I have the code:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?p=$1 [QSA,L]
</IfModule>
So, instead, I build the page with more pages, such as abc.com/contact/david instead of: abc.com/contact?person=david like I have now ...So how do I do? Guess it is pretty easy, but it would be great if someone wanted to explain it to me.