修改.htaccess重写规则

时间:2015-05-09 15:04:01

标签: .htaccess

我是网络开发的新手。在我的网站中,我有public_html文件夹,它有app文件夹。我在htaccess文件中有以下RewriteRule:

foreach(var feature in root.features)
{
    var coordinatesForFeature = feature.geometry.coordinates;
}

现在我想修改规则,如果我在public_html下创建新的文件夹配置文件,它应该显示配置文件文件夹的index.php。基本上,如果我在浏览器窗口中输入www.example.com/profile,它应该显示index.php文件的内容。

1 个答案:

答案 0 :(得分:1)

有几种方法可以做到这一点,但这应该是最简单的方法。

RewriteRule ^ [a-z0-9 _-] + /?$ ./profile/index.php [L,NC]