如何从Url中删除项目名称

时间:2016-04-05 05:32:56

标签: javascript jquery angularjs html5 .htaccess

我使用$locationProvider.html5Mode(true)

从网址中删除了哈希标记

然后我尝试使用htcaccess文件中的以下代码来解决刷新问题

Options +FollowSymlinks
RewriteEngine On
RewriteBase /test/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !.*\.(css|js|html|png|jpg|jpeg|gif|txt)
RewriteRule (.*) index.html [L]

现在网址看起来像

http://diafriends.hostoi.com/test/
http://diafriends.hostoi.com/test/about
http://diafriends.hostoi.com/test/contact

现在我想从上面的网址中删除test。我怎么能这样做?

enter image description here

1 个答案:

答案 0 :(得分:0)

首先从您的文件夹中删除托管服务提供商的default.php文件,然后将以下内容添加到htaccess:

Options +FollowSymlinks
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !.*\.(css|js|html|png|jpg|jpeg|gif|txt)
RewriteRule (.*) /test/index.html [L]