コード :
.htaccess:
RewriteEngine On
RewriteRule ^(.*)/*$ base.php?request=$1 [NC,L]
base.php
<?php
echo "this is base.php <br/> and Get Vaiables <br> ";
print_r($_GET);
?>
リクエストの場合:
localhost/blahblahproject/hello
期待される結果:
これは base.php
で、Vaiables
Array を取得します ( [request] => hello )
現在の結果:
これは base.php
で、Vaiables
Array を取得 ( [request] => base.php )