Hallo liebe Community,
diese Rewriterule macht an sich genau das was sie soll:
Code:
RewriteRule ^([^/\.]+)/$ http://example.org/index.php?m=$1 [L]
wenn ich:
Code:
http://example.org/Kontakt/
http://example.org/PHP/
aufrufe, dann wird daraus:
Code:
http://example.org/index.php?m=Kontakt
http://example.org/index.php?m=PHP
wenn ich aber:
Code:
http://example.org/Templates/
http://example.org/CSS/
aufrufe, dann wird daraus:
Code:
http://example.org/index.php?m=templates
http://example.org/index.php?m=css
Kann mir jemand sagen warum das so ist und wie ich das beheben kann?
MfG