I'm using Sitecore 6.5. There is a multi-language configuration. I use items with aliases.
Aliases can be created on a content item. Click on the item > Presentation > Aliases. Enter for example: /page/stackoverflow/myitem. Click OK.
The alias is created in the content tree now, see: /sitecore/system/Aliases/*
The alias is stored in the content tree as:
- page
-- stackoverflow
--- myitem
Each item is a part of the alias created.
Problem.
- Website url: http://www.contoso.local
- Valid alias url: http://www.contoso.local/page/stackoverflow/myitem
- Invalid alias url: http://www.contoso.local/page OR http://www.contoso.local/page/stackoverflow
The invalid urls (based on the created alias) cause errors in the errorlog. 51161 12:01:26 ERROR An alias for "/page" exists, but points to a non-existing item.
I want to change the:
- Log level to
INFO/WARN
or - Log this error in a seperate errorlog or
- Create a custom
httpRequest
pipeline to avoid this error.
The above list is on the preferred order. Unless there are better possibilities to solve this problem. Is there anyone who have experienced this problem and have a good solution?
Thanks a lot.
Jordy