Canonical url htaccess

时间:2017-06-27 06:34:24

标签: .htaccess redirect url-rewriting friendly-url canonical-link

我试图通过htaccess文件实现某些功能。 我想要这个

http://mypage.com/e-store/561/ http://mypage.com/e-store/562/

看起来像这样

http://mypage.com/tv-screens http://mypage.com/computers

我已经读过可以通过htaccess重写网址。但我无法绕过它。

1 个答案:

答案 0 :(得分:1)

使用这是.htaccess文件:

RewriteRule ^([-a-zA-Z0-9_]+)/$ ?url=$1 [L]

并在代码输出页面中添加:

http://mypage.com/?url=tv-screens

在参数URL上显示必要的页面。

此链接不显示页面屏幕名称:

http://mypage.com/e-store/561/
相关问题