htaccess从两个方向隐藏文件夹名称

时间:2017-01-28 12:01:26

标签: php apache .htaccess url mod-rewrite

我希望我的网址看起来不错。 所以当我有这个网址时:

  

本地主机/页

我希望网址看起来像这样:

  

本地主机/

我已经解决了,当我输入localhost / pages时,我从/ pages获取索引文件,但当我输入/ pages时它仍然显示:

  

本地主机/页。

如何更改/页面未显示?

我的htaccess代码:
<body ng-controller="MainCtrl"> <table class="table table-bordered table-hover"> <tr ng-repeat="ornament in (filteredItems = (ornamentdata | filter : {GLID: testid}))" > <td>{{$index }}</td> <td>{{ornament.ORNAMENT}}</td> <td>{{ornament.WEIGHT}}gm</td> </tr> </table> <p>Number of filtered items: {{filteredItems.length}}</p> </body>

1 个答案:

答案 0 :(得分:0)

您当前的重写规则会将localhost/foo重定向到localhost/pages/foo,并提供localhost/pages/foo。将重写规则更改为:

RewriteRule ^pages/(.*)$ $1 [L]