How can I get more pages with mod_rewrite
- by wesszzel
I use the mod_rewrite on my website, but some things arent working. I want four pages.
Index
Contact
News
Portfolio
But all my links end up linking to Index! How do I change this?
I use this code:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
Thank you!!