SEO 友好的 URL,带有 .htaccess
有人可以帮我重写一些 URL 吗?
我有(例如)这些页面:
www.mydomain.com/test/gallery.asp?id=2
www.mydomain.com/test/gallery.asp?id=3
并希望它们被请求为:
www.mydomain.com/photos/people
www.mydomain.com/photos/wildlife
我正在使用 IIS,起初我的托管提供商使用 ISAPI_Rewrite 和 httpd.ini 文件,现在他们已切换到 Helicon Ape 和 .htaccess 文件。 请参阅:http://www.isapirewrite.com/ 和 http://www.helicontech.com/ape/
我尝试了 ISAPI_Rewrite 方式:
RewriteRule /photos/people /test/gallery.asp?id=2 [I,L]
RewriteRule /photos/wildlife /test/gallery.asp?id=3 [I,L]
但它不起作用。
建议?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试
第一行是测试,如果它不是文件,
第二行是测试,如果它不是目录,
第三行将重定向 photos/wildlife?a=true 到 test/gallery.asp?id=wildlife&a=true
如果你不'不想用 a=true 重定向,只需给出 QSA ;)
try this
first row is test if it isn't file
second row is test if it isn't directory
third will redirect photos/wildlife?a=true to test/gallery.asp?id=wildlife&a=true
if you don't want to redirect with a=true, just give out QSA ;)