Jump to content

Changing Urls?


Guest

Recommended Posts

Hi Everyone,

 

I've partly figured out how to change my URLs but I'm having trouble with fixing the space(%20) that's located in my URL.

 

I've tried using the str_replace function but it's either not working or I'm not doing in correctly.

 

My goal is to turn this URL (first one below this statement) into the URL that's below the first one. I'm having a hard time figuring this out. Any help would be appreciated. Thanks Everyone!

 

(URL that works but it has %20, which is something I don't want)

http://whatsmyowncar...lorida/key west

 

(URL that does not work but I'm attemping to make the above URL look like this one)

http://whatsmyowncar...lorida/key-west

 

My .htaccess code is below as well. Thanks again everyone!

 

 

<?php
include('init.php'); // connection to database


// if city exists...
if (isset($_GET['u'])) {
// decode and replace hyphen with space
// $city = str_replace('-','',urldecode($_GET['u']));
$city = str_replace('%20','-',urldecode($_GET['u']));
// $city = str_replace('','-',urldecode($_GET['u']));
// $city = str_replace('-','','%20','-', urldecode($_GET['u']));

// if value contains only letters, numbers or spaces...
if ( preg_match('~^[a-z0-9 ]+$~i',$city) ) {
// select data from database...
$data = mysql_query("SELECT State, City FROM cars WHERE City='$city'" );
if (mysql_num_rows($data) > 0) {
while ($row = mysql_fetch_assoc($data)) {
echo $row["City"];
echo $row["State"];
}
}
}
}
?>

 

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]+)/(.*) /auto/cars.php?s=$1&u=$2 [L,NC]

Link to comment
https://forums.phpfreaks.com/topic/270118-changing-urls/
Share on other sites

Are you saying that if you echo $_GET['u'] you get key%20west? Then just run the urldecode on it. Why do you want to add dashes? If you want to replace spaces dashes either do that after the urldecode (you're doing an empty string '', not a space), or do it before the decode, not after. 

Link to comment
https://forums.phpfreaks.com/topic/270118-changing-urls/#findComment-1389098
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.