我有以下网址。我想重写以下网址以省略网址中的“视图”。
这是目前我现有的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
我如何重写网址以使其
http://example.com/page/helloworld
关键字 helloworld 是动态的。
专家建议表示赞赏。