i want make
how i make this guid me help me
PHP Code:
$a = 'a';
$b = 'b';
$c = 'c';
www.mysite.com/a/b/c/eg.mp3
if you are talking about sub directory listing than here is an example.
<?
$path = '/a/b/c/';
$site = explode('/', $path);
print_r($site);
?>
Options +FollowSymLinks RewriteEngine on RewriteRule file/a/(.*)/b/(.*)/c/(.*) file.php?a=$1&b=$2&c=$3
mkdir("a/b/c", 0777, TRUE);
Comment