简体   繁体   中英

Creating Category Url in joomla

I create new category in Joomla 3.3 name water . I wan to display that category page like http://www.myserver.com/Joomla/water It's display 404 error. If i create menu for that so it's display. I Have many categories so help me to see category page without create menu.

You can achieve this by using url rewriting like below.

Put the following code in your joomla .htaccess file after RewriteEngine On statement.

 RewriteRule jcats/(.*)$ index.php?option=com_mycomponent&task=mycontroller.viewitem&catalias=$1 [NC,L]

In this way any url like http://example.com/jcats/about-us would give you the last parameter as catalias variable and either with the help of a new component called com_mycomponent or com_content can be used to display the category or articles in the category.

I have done this beautifully for one of my website. If you need further help, feel free to revert back .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM