使用htaccess删除扩展名和尾部斜杠

时间:2014-06-13 05:37:59

标签: .htaccess

我想这样做,   如果我的网址是mysite / about我想重定向到about.php并为mysite / about /做同样的事情。我怎么能用这个htaccess文件。

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^/]+)/$ $1.php
RewriteRule ^([^/]+)/([^/]+)/$ /$1/$2.php
RewriteCond %{REQUEST_URI} !(\.[a-zA-Z0-9]{1,5}|/)$
RewriteRule (.*)$ /$1/ [R=301,L]

1 个答案:

答案 0 :(得分:0)

不是通过将此行放在.htaccess中而使用MultiViews选项重写规则,而是重写规则:

Options +MultiViews
  • MultiViews使用选项Apache's content negotiation module,它在mod_rewrite之前运行,并使Apache服务器匹配文件扩展名。因此/file可以在网址中,但它会投放/file.php