URL重写.htaccess

发布于 2024-12-17 17:52:43 字数 292 浏览 0 评论 0原文

我想通过 htaccess 重写 URL,但我没有得到执行特定重写的解决方案。例如,我有一个 URL:

http://www.yourdomain.com/page/about-us.html

现在我想从上面的 URL 中删除 page,所以它应该看起来像;

http://www.yourdomain.com/about-us.html

任何人都可以帮我解决这个问题吗?

提前致谢。

I want to rewrite a URL through htaccess, but I am not getting the solution to do the specific rewriting. For e.g., I have a URL:

http://www.yourdomain.com/page/about-us.html

Now I want to remove page from above URL, so it should look like;

http://www.yourdomain.com/about-us.html

Can anybody help me with this.

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

注定孤独终老 2024-12-24 17:52:43

像这样的东西应该可以工作:

RewriteEngine on
RewriteRule ^about-us.html$ /page/about-us.html

如果您需要在放入网站的任何 URL 上完成它,那么像这样:

RewriteEngine on
RewriteRule ^([_\&\'\,\+A-Za-z0-9-]+).html$ /page/$1.html

Something like this should work:

RewriteEngine on
RewriteRule ^about-us.html$ /page/about-us.html

If you need it done on any URL put into the site, then something like this:

RewriteEngine on
RewriteRule ^([_\&\'\,\+A-Za-z0-9-]+).html$ /page/$1.html
岛徒 2024-12-24 17:52:43

假设您想要 301:

   RewriteEngine on
   RewriteRule    ^page/about-us.html$ /about.html [R=301,L]

Assuming you want a 301:

   RewriteEngine on
   RewriteRule    ^page/about-us.html$ /about.html [R=301,L]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文