如何从angularjs网站的网址隐藏ID

时间:2016-09-12 07:00:48

标签: angularjs .htaccess url routing seo

我当前的网址是:http://xyz.services/50/home

我想将此网址更改为http://xyz.services/

任何人都可以帮我解决这个问题.50是页面的id。

页面的全部内容来自数据库。

下面是我的.htaccess

RewriteEngine on
#RewriteRule /(.*)/(.*)/$ pages.html?menu_id=$1&page_title=$2    
#RewriteRule /(.*)/(.*)/$ page.php?category=$1&product=$2    

# Don't rewrite files or directories
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]

# Rewrite everything else to index.html to allow html5 state links
RewriteRule ^ index.html [L]

1 个答案:

答案 0 :(得分:0)

查看How can i hide the full url of my website?

这不是特定于角度的,而是在您部署到的服务器上的更多配置。