Hi all,
I just want to make a rule like that:
Normally my links are:
index.php?view=Home&action=edit&id=23
This I want to transform to
Home/edit/23
I started with:
RewriteRule ^([^\.]+)$ index.php?view=$1
This works.
No I have the problem that also a trailing slash shall be accepted. As Home/
Therefore I tried:
RewriteRule ^([^/.]+)/?$ index.php?view=$1
If I try this afterwards apache does something, but not the correct. It loads the page but without css and some other things missing.
What is wrong with this?
Best regards,
DerTobi