我希望我的网址看起来不错。 所以当我有这个网址时:
本地主机/页
我希望网址看起来像这样:
本地主机/
我已经解决了,当我输入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>
答案 0 :(得分:0)
您当前的重写规则会将localhost/foo
重定向到localhost/pages/foo
,并提供localhost/pages/foo
。将重写规则更改为:
RewriteRule ^pages/(.*)$ $1 [L]