Webサーバーのルートではなく、ディレクトリに構築しているサイトがあります。
I would like http://localhost/mysite/index.php?view=home
to rewrite to http://localhost/mysite/home
動かせない
.htaccessでこれを試してみてください
RewriteEngine On
RewriteBase /mysite/
RewriteRule ^([^/]*)$ index.php?view=$1 [L]