How to list categories on frontpage site menu?
wll6568 0
From: -
From: -
Notice
This topic is archived. New comments cannot be posted and votes cannot be cast.Responses to this topic
1 Re: How to list categories on frontpage site menu?
Philipp
From: Vienna, Austria
Administrator
1340From: Vienna, Austria
How to list categories on frontpage site menu?
You could add the list manually as part of your layout. Take a look at the site_header and site_footer templates.
See this thread: http://www.esselbach.com/thread.php?id=320
A complete .htaccess would look like this one:
I am wanting to list down the categories on the site menu, like this site is doing (www.selfseo.com), but how to do that?
You could add the list manually as part of your layout. Take a look at the site_header and site_footer templates.
Also, how to use mod_rewrite? I am trying to do smth like, renaming the category name to category-name.php, and article name to be article-name.php. I searched the forum about mod_rewrite, but they said look for htaccess file in extra folder, but I cant find the file in the extra folder.
See this thread: http://www.esselbach.com/thread.php?id=320
A complete .htaccess would look like this one:
RewriteEngine On
RewriteRule ^index.html$ /index.php
RewriteRule ^(.*)_s([0-9]+).html$ /story.php?id=$2
RewriteRule ^(.*)_p([0-9]+).html$ /printer.php?id=$2
I am wanting to list down the categories on the site menu, like this site is doing (www.selfseo.com), but how to do that?
Also, how to use mod_rewrite? I am trying to do smth like, renaming the category name to category-name.php, and article name to be article-name.php. I searched the forum about mod_rewrite, but they said look for htaccess file in extra folder, but I cant find the file in the extra folder.
Thanks.