Add to Google

How To Make Permalink In Blogs?

free web hosting
Open Discussion > CONTRIBUTE > Computers > Programming Languages > PHP Programming

How To Make Permalink In Blogs?

apple
Can someone give me idea what is term 'permalink' in blogs using php.. and for example if i have a post like, myblog.php?post_id=xxx&cat_id=zzz how i can make like permalink of this post ??

Comment/Reply (w/o sign-up)

andybebad
according to wordpress.org,
QUOTE
Permalinks are the permanent URLs to your individual weblog posts, as well as categories and other lists of weblog postings. A permalink is what another weblogger will use to refer to your article (or section), or how you might send a link to your story in an e-mail message. Especially when they are used to link to individual postings, once a story is posted, the URL to it should be permanent, and never change. Hence the "perma" in the name.
They're generally used to make urls simpler to remember.
if mod_rewrite is available, you could set up an .htaccess file that looks like this:

CODE
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^index/([0-9]+)/([0-9]+)/?$ /index.php?id=$1&cat_id=$2 [L]
</IfModule>

This would make it so that the link site.com/index/11/223/ would actually be site.com/index.php?id=11&cat_id=223


EDIT:
here are a couple of resources you could look at for mod_rewrite:
http://www.workingwith.me.uk/articles/scripting/mod_rewrite
http://www.sitepoint.com/article/guide-url-rewriting

 

 

 


Comment/Reply (w/o sign-up)



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

Recent Queries:-
  1. how to make permalink like .php?id= - 91.56 hr back. (1)
Similar Topics

Keywords : make, permalink, blogs,

  1. Introduce Two Blogs
    opensource weblog (3)


      Looking for make, permalink, blogs,

Searching Video's for make, permalink, blogs,




advertisement



How To Make Permalink In Blogs?