I\'m trying to rewrite the URL using htaccess, but I have some problems that I hope you could help me with.
This is the contents of my .htaccess file
Rew
You can have another rule for /info
:
RewriteEngine On
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule ^([^/]+)/?$ ?page=$1 [L,QSA,NC]
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule ^(.+)$ index.php?page=projects&id=$1 [L,QSA]