PDA

View Full Version : [help!!!] URL rewriting


martin_boy
10-12-05, 05:52 AM
Help me pls if you can.

I have a class URL working with URLs like http://www.example.com/dir1/dir2/script.php/a_1/b_2/#top It is necessary to rewrite this URL using Apache modul mod_rewrite to the URL witch can load page index.php and pass URL parametres to the class object.

Who can help me???

Satria
10-13-05, 10:41 AM
at public_html/ make .htaccess file contain:
.htaccess:<files fakedirectory>
ForceType application/x-httpd-php
#AcceptPathInfo On # uncomment this if you have apache2
</files>

and make a file call "fakedirectory" (without any file extentions)
fakedirectory:<?php
phpinfo();
?>

open your browser and navigate to:
http://www.example.com/fakedirectory/anotherFake/Im.Fake/somewhere.html