Help - Search - Members - Calendar
Full Version: .htaccess url rewrite help
Pixel2Life Forum > Help Section > PHP, ASP, MySQL, JavaScript and other Web/Database Programming Help
Blambu
Hey,

I'm after some help with the following .htaccess code:
CODE
Options +Indexes
Options +FollowSymlinks
RewriteEngine on
RewriteBase /
RewriteRule ^(.*)$ profile.php?username=$1 [L]


I just can't get it to work, I want to be able to go to myurl.com/myusername and it will show my account.

Also, how would I go about making /about go to about.php

Any help would be greatly appreciated.



smile.gif
Blambu
Still not got this to work sad.gif
Rcty
Sorry, I can't help you with your first question, but making /about go to about.php is fairly simple. You can have more than one RewriteRule in an .htaccess file. You should be able to do that by just adding this to your code:

CODE
RewriteRule ^about$ about.php [L]
Jurnky
This will work:

CODE
RewriteEngine On
RewriteBase /
RewriteRule ^()$ index.php [NC,L]
Rewritecond %{REQUEST_URI} !(^/?.*\..*$) [NC]
RewriteRule (.*)$ $1.php [NC]

ErrorDocument 404 /404


Just be sure that in the mark up, you write <a href="myurl.com/about"> instead of <a href="myurl.com/about.php"> and the .php extension will be removed.
Blambu
QUOTE (Jurnky @ Jul 20 2009, 04:05 PM) *
This will work:

CODE
RewriteEngine On
RewriteBase /
RewriteRule ^()$ index.php [NC,L]
Rewritecond %{REQUEST_URI} !(^/?.*\..*$) [NC]
RewriteRule (.*)$ $1.php [NC]

ErrorDocument 404 /404


Just be sure that in the mark up, you write <a href="myurl.com/about"> instead of <a href="myurl.com/about.php"> and the .php extension will be removed.



Thanks mate,

That has put me right in the direction I'm meant to be heading. Any clue how I'd then be able to use it as a varilable in my PHP.

Say I want to capture from the url the username, say $username = $_GET['WHAT HERE?'];


Thanks for your continuing support smile.gif Highly appreciated!
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2009 Invision Power Services, Inc.