RewriteCond %{REQUEST_URI} ^/new/
RewriteRule ^(.*)$ new.php?title=$1 [L,QSA]
im confused as to what this does....
what does the REQEUST_URI do ?
|
|
im confused as to what this does.... what does the REQEUST_URI do ?
|
||||
|
|
|
If ( i.e.
|
||
|
|
|
|
REQEUST_URI contains the current absolute URL path. So the rule will be applied on every request that’s URL path starts with So if you use this rule in the .htaccess file of
|
||
|
|
|
|
Your example can be explained as
If the URL request is your hostname (REQUEST_URI) follow by
Then rewrite them as your hostname follow by provided string Example: URL request to:
server will interpret it as:
|
|||
|
|
|
|
Basically it makes nice, pretty URLs. It takes an URL like http:/www.example.org/new/foobar and in the background calls http://www.example.org/new.php?title=foobar. REQUEST_URI is everything after the hostname. In the above example that's /new/foobar. |
||
|
|
|
|
If the URL begins with "/new/", it rewrites the URL to new.php, placing the old URL as the value for the "title" field. "/new/Foo+Bar?bam=bug-AWWK!" becomes "new.php?title=/new/Foo+Bar&bam=bug-AWWK!" or (if the RewriteRule is in an .htaccess file) "new.php?title=new/Foo+Bar&bam=bug-AWWK!". |
||
|
|