如标题所示。我希望使用example.com/bar.php
作为地址来运行example.com/bar
,但这并没有错。如何设置?
答案 0 :(得分:6)
最简单的方法:将其命名为 /bar/index.php
其他方法包括mod_rewrite和ForceType(假设Apache)。
答案 1 :(得分:1)
如果你正在使用apache,请尝试将其添加到.htaccess文件中:
RewriteEngine on
RewriteBase /
RewriteRule ^bar$ bar.php
答案 2 :(得分:0)
如果您正在使用Apache,请查看htaccess和mod_rewrite