Jump to content

how to redirect URL


SennNathan

Recommended Posts

You would use mod_rewrite for this. 

 

Have the following in a .htaccess file in your sites document root.

RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([\w]+)?$  index.php?profile=$1

Then output your links in the new format, eg

$username = 'Nathan'; // users username

echo '<a href="/'.$username.'">'.$username.'</a>'; // output link in the new format
Link to comment
https://forums.phpfreaks.com/topic/294030-how-to-redirect-url/#findComment-1503328
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.