如何在不使用地址中的php扩展名的情况下运行php脚本

时间:2010-01-24 15:17:42

标签: php

如标题所示。我希望使用example.com/bar.php作为地址来运行example.com/bar,但这并没有错。如何设置?

3 个答案:

答案 0 :(得分:6)

最简单的方法:将其命名为 /bar/index.php

其他方法包括mod_rewriteForceType(假设Apache)。

答案 1 :(得分:1)

如果你正在使用apache,请尝试将其添加到.htaccess文件中:

RewriteEngine on
RewriteBase /
RewriteRule ^bar$ bar.php

答案 2 :(得分:0)

如果您正在使用Apache,请查看htaccess和mod_rewrite