如何重写url以省略一个参数

时间:2013-07-08 23:31:59

标签: mod-rewrite

我有以下网址。我想重写以下网址以省略网址中的“视图”。

这是我现有的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是动态的。

专家建议表示赞赏。

1 个答案:

答案 0 :(得分:1)

如果您担心转移SEO,可能需要将R = 301添加到标志中。

RewriteEngine On

RewriteRule ^(.+)/view/(.+)$ /$1/$2 [L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d    
RewriteRule ^(.*)$ index.php?url=$1 [PT,L]