Reputation: 1
In my wordpress site I have two types of pages: About Us and News. The About Us page is just a general page that contains some site information whereas page News will contains posts from admin.
So, is it possible to configure wordpress so that:
http://localhost/worpress/about-us
will direct to my About Us Pagehttp://localhost/wordpress/news
will direct to my News pages http://localhost/wordpress/news/?p=123
will direct to specific news posted under News Page.Any links to tutorial will surely help more.
Thanks
Upvotes: 0
Views: 957
Reputation: 27092
You're asking about what WordPress refers to as Pretty Permalinks.
Please see the link above, but in a nutshell...
Requirements:
mod_rewrite
module installed FollowSymLinks
option enabled
FileInfo
directives allowed (e.g. AllowOverride FileInfo
or
AllowOverride All
) You'll then want to head to the admin and change your Permalink settings to point to Post Name.
Upvotes: 2