i have a simple mod_rewrite rule which allow me to re-direct any requests that are not actual files or directories to the index.php file
Options +SymLinksIfOwnerMatch
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
in PHP file i put this simple code to handle this navigation
<?php
$navString = $_SERVER['REQUEST_URI']; // Returns "/Mod_rewrite/edit/1/"
$parts = explode('/', $navString); // Break into an array
// Lets look at the array of items we have:
print_r($parts);
?>
my development environment is XAMPP and Windows 7 - 64 bit
httpd.conf file
<Directory />
Options FollowSymLinks
AllowOverride All
Order deny,allow
Deny from all
</Directory>
<Directory "C:/xampp/cgi-bin">
AllowOverride All
Options None
Order allow,deny
Allow from all
</Directory>
my problem is when ever i pass any varible to the scrip for example
http://locahost/test/somethinghere/andhere
it redirect me to the local host default page which is
http://locahost/xampp
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…