Need Help in getting seo friendly urls

Discussion in 'Programming' started by imranamen6, Feb 23, 2013.

  1. #1
    Solved! View solution.
    imranamen6, Feb 23, 2013 IP
  2. #2
    Of course it is possible. Imagine this:

    your content title is Emirates Flights to Geneva, you need to save an "alias" in your database, creating a column like titlealias so having as value: emirates-flights-to-geneva.

    Then hands on your htaccess file, for example:
    RewriteRule RewriteRule ^(.*)/(.*) index.php?fileload=$1&contentload=$2 [NC]

    so for example this URL:
    http://emiratesbooking.org/destination-details/emirates-flights-to-geneva

    destination-details is your PHP files destination-details.php and emirates-flights-to-geneva is what you will have to search in your database...

    Sooo... converting it in code:

    
    //In index.php
    $fileload = $_GET['fileload'];
    $content = $_GET['contentload'];
     
    //Assuming you validated the input
    include $fileload.".php";
    
    PHP:
    ----
    
    //In destination-details.php
    $query = mysql_query ("SELECT * FROM contents WHERE aliastitle='$content' ORDER BY id LIMIT 1");
    
    PHP:
     
    YoGem, Feb 23, 2013 IP
    imranamen6 likes this.
  3. tom.watson

    tom.watson Peon

    Messages:
    16
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    1
    #3
    its the same website....i have to book the tickets to usa...verginia..which one is the cheapest...?
     
    tom.watson, Feb 25, 2013 IP
  4. imranamen6

    imranamen6 Active Member

    Messages:
    947
    Likes Received:
    4
    Best Answers:
    1
    Trophy Points:
    98
    Digital Goods:
    1
    #4
    What date you want to travel? Just make a search and you will get the cheapest on top.
     
    imranamen6, Feb 25, 2013 IP
  5. imranamen6

    imranamen6 Active Member

    Messages:
    947
    Likes Received:
    4
    Best Answers:
    1
    Trophy Points:
    98
    Digital Goods:
    1
    #5
    Thanks for your help i appreciate it alot. Can you help me more into this? I am not having much idea on this so if i send you the destination-details.php file can you set this for me?

    this would be a great help.

    Thanks in advance.

     
    imranamen6, Feb 25, 2013 IP
  6. tom.watson

    tom.watson Peon

    Messages:
    16
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    1
    #6
    yeah i will see that..thanks..
     
    tom.watson, Feb 27, 2013 IP