次のURLがあります。次のURLを書き換えて、URLから「ビュー」を省略したいと思います。
ここに現在私の既存のmodの書き換えがあります
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?url=$1 [PT,L]
</IfModule>
http://example.com/page/view/helloworld
URLを書き換えて作るにはどうすればいいですか
http://example.com/page/helloworld
キーワード helloworld は動的です。
専門家のアドバイスをいただければ幸いです。