mod_rewrite使用或不使用Slash重写URL

时间:2010-08-12 23:16:52

标签: php mod-rewrite url-rewriting

写出.htacess的正确方法是什么,以便www.domain.com/about_us和www.domain.com/about_us/访问www.domain.com/about_us.php

目前,我所拥有的是以下内容,只是想知道是否有办法将其放在一行

选项+ FollowSymLinks
重写引擎 RewriteRule ^(about)$ /about_us.php
RewriteRule ^(about /)$ /about_us.php

2 个答案:

答案 0 :(得分:3)

这是一个正则表达式,所以添加?之后/将进行/可选(0或1次出现)。此外,括号是不必要的:

Options +FollowSymLinks
RewriteEngine on
RewriteRule ^about/?$ /about_us.php

答案 1 :(得分:1)

RewriteRule ^about/?$ /about_us.php