Hello everyone,
It's me again with a silly question.
As codestryke told me in my previous
topic, you can rewrite your url's trough the htaccess file.
I tried it and.. success!
RewriteEngine On
RewriteRule ^([A-Za-z0-9]+)$ index.php?page=$1
So I also wanted to use this for nice profile and activate links.
RewriteEngine On
RewriteRule ^([A-Za-z0-9]+)$ index.php?page=$1
RewriteRule ^profile/([A-Za-z0-9]+)$ index.php?page=profile&id=$1
RewriteRule ^activate/([A-Za-z0-9]+)$ index.php?page=activate&id=$1This works, the code is excecuted. Altough.. all my css styles are ignored (and it looks like a 3 year old kid made it).
I tried bascially everything i could think of.
Any idea's?Thank you!