I have a problem with the rewrite i have this rules.
is seems the rules is ok
When i try to go www.example.net/example i got 404 error, i search in the logs i see this
[REWRITE] Rule: Match '/example' with pattern '^example$', result: -1
2009-03-28 18:11:43.479 [INFO] [x.x.x.x:2318-0#example] File not found [/home/user/example.net/example]
[REWRITE] Rule: Match '/example' with pattern '^example(.*)', result: -1
2009-03-28 18:22:37.221 [INFO] [x.x.x.x:2912-1#example] File not found [/home/user/example.net/example]
In whatever rules always try to find this path /home/user/example.net/example of course there are not folder name example and that is why i have 404 error.
So my question is how i can fix this problem there are something wrong on my rules.
Thanks
Code:
RewriteRule ^example$ /example.html
When i try to go www.example.net/example i got 404 error, i search in the logs i see this
[REWRITE] Rule: Match '/example' with pattern '^example$', result: -1
2009-03-28 18:11:43.479 [INFO] [x.x.x.x:2318-0#example] File not found [/home/user/example.net/example]
Code:
RewriteRule ^example(.*) example.html
2009-03-28 18:22:37.221 [INFO] [x.x.x.x:2912-1#example] File not found [/home/user/example.net/example]
In whatever rules always try to find this path /home/user/example.net/example of course there are not folder name example and that is why i have 404 error.
So my question is how i can fix this problem there are something wrong on my rules.
Thanks