does not read .htaccess files for URl rewriting. However, through some
co-operation with customers we've found that the follow 'rules' can be
applied in the hosting control panel for hosting comapnies that use
Zeus.
Provided here are two sets of rules. The first set are for
websites that run in their base folder. The second set are for websites
running Website Publisher in a sub-folder:
match URL into $ with ^/categories(.*)$ if matched set URL = /categories.php?$1 goto END endif match URL into $ with ^/articles(.*)$ if matched set URL = /articles.php?$1 goto END endif match URL into $ with ^/pages(.*)$ if matched set URL = /pages.php?$1 goto END endif match URL into $ with ^/blogs(.*)$ if matched set URL = /blogs.php?$1 goto END endif match URL into $ with ^/search(.*)$ if matched set URL = /search.php?$1 goto END endif match URL into $ with ^/authors(.*)$ if matched set URL = /authors.php?$1 goto END endif match URL into $ with ^/articlerss(.*)$ if matched set URL = /articlerss.php?$1 goto END endif match URL into $ with ^/news(.*)$ if matched set URL = /news.php?$1 goto END endif match URL into $ with ^/newsrss(.*)$ if matched set URL = /newsrss.php?$1 goto END endif match URL into $ with ^/contact(.*)$ if matched set URL = /contact.php?$1 goto END endif
The second set for subdirectories:
match URL into $ with ^/websitepublisher/categories(.*)$ if matched set URL = /websitepublisher/categories.php?$1 goto END endif match URL into $ with ^/websitepublisher/articles(.*)$ if matched set URL = /websitepublisher/articles.php?$1 goto END endif match URL into $ with ^/websitepublisher/pages(.*)$ if matched set URL = /websitepublisher/pages.php?$1 goto END endif match URL into $ with ^/websitepublisher/blogs(.*)$ if matched set URL = /websitepublisher/blogs.php?$1 goto END endif match URL into $ with ^/websitepublisher/search(.*)$ if matched set URL = /websitepublisher/search.php?$1 goto END endif match URL into $ with ^/websitepublisher/authors(.*)$ if matched set URL = /websitepublisher/authors.php?$1 goto END endif match URL into $ with ^/websitepublisher/articlerss(.*)$ if matched set URL = /websitepublisher/articlerss.php?$1 goto END endif match URL into $ with ^/websitepublisher/news(.*)$ if matched set URL = /websitepublisher/news.php?$1 goto END endif match URL into $ with ^/websitepublisher/newsrss(.*)$ if matched set URL = /websitepublisher/newsrss.php?$1 goto END endif match URL into $ with ^/websitepublisher/contact(.*)$ if matched set URL = /websitepublisher/contact.php?$1 goto END endif
