How to implement URL rewriting in php

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • 010689
    New Member
    • Nov 2011
    • 3

    #1

    How to implement URL rewriting in php

    Hello,
    I am new to php and want to implement url rewriting . i know asp classic very well .
    please give a hint.
  • Dormilich
    Recognized Expert Expert
    • Aug 2008
    • 8694

    #2
    you can’t do URL rewriting in PHP (and I’d say neither is ASP). URL rewriting is made on webserver level (i.e. Apache, IIS, etc.).

    Comment

    • 010689
      New Member
      • Nov 2011
      • 3

      #3
      i have a news site and i want to make news url from news title
      so do i need to make all pages of each news or is there any way by which i can show the news url from news title and physically it should not exist .

      Comment

      • Dormilich
        Recognized Expert Expert
        • Aug 2008
        • 8694

        #4
        if you run Apache with mod_rewrite enabled, you can set-up the rewrite rules in a .htaccess file on the server.

        Comment

        Working...