Hi
i switched my project to a bigger server and now i have the problem that my custom pages like /page/image-search/ are not working anymore. I figured out that its because of the hyphen in the page-name - if i remove the hyphen in the pagename it works fine.
But i dont want to change the page-names because people dont find what they search for anymore. Other pages like /page/search/tags/my-great-tag work fine, the problem is just occurring with my custom pages.
Can somebody imagine where this problem may come from? Maybe its something with the modrewrite-rules?
Thanks for your help in advance!
Comments
thanks for your answer. I found the problem - it seems that the rewrite-rule like:
RewriteRule ^page/([A-Za-z0-9\-_]+)/?$
doesnt work - but it works when i write:
RewriteRule ^page/([A-Za-z0-9_\-]+)/?$
The only thing thats changed is the order of the rule. But hey - it works so why think about it Maybe someone else has got the same problem - try this to solve it.
bye