0

在我的 magento 模块中有一个扩展。一些网址如

  1. http://www.domain.com/abc/p#abcs.html
  2. http://www.domain.com/abc/p#xyz.html

ETC

但是当浏览http://www.domain.com/abc/p -> 导致空白页

我不需要http://www.domain.com/abc/p网址

有人帮我吗我想将 url http://www.domain.com/abc/p重定向到 404 页面而不影响其子项

即 1. http://www.domain.com/abc/p#abcs.html 2. http://www.domain.com/abc/p#xyz.html 指向其当前位置和

http://www.domain.com/abc/p到 404 任何帮助

4

1 回答 1

1

根据您的评论,它似乎http://www.domain.com/abc/p#abcs.html显示了正确的内容,但http://www.domain.com/abc/p显示了空白页。

在这种情况下,您不能通过这样做,.htaccess因为在服务器端 URL 将始终是:http://www.domain.com/abc/p

您需要在您的页面中添加一些自定义 Javascript,并通过location.href使用您的 Javascript 检查重定向到一些不存在的页面(导致 404)。

于 2013-06-18T06:48:30.273 回答