复杂.htaccess问题

时间:2010-10-16 03:17:30

标签: .htaccess mod-rewrite

假设我有以下文件结构:

www.example.com/index.php(主页) www.example.com/about.php www.example.com/services.php www.example.com/contact.php

如何在.htaccess文件中使用mod_rewrite,以便浏览器指向: www.example.com/about.php

显示的实际网址为: www.example.com/about /

但是,我不希望这适用于index.php 换句话说,我不想看到: www.example.com/index /

感谢您提供任何帮助,因为我即将疯狂地试图解决这个问题....:D

1 个答案:

答案 0 :(得分:3)

RewriteCond %{REQUEST_FILENAME} !index.php$
RewriteRule ^(.*)\/$ $1.php [L]

编辑:我想这更好