我已经浪费了很多时间来解决这个问题,现在我正在寻求专家的帮助:
问题:
我的url是动态工作的,例如:
https://www.example.com/services?s=10
,我想重写,以如下方式提供:
https://www.example.com/services/advanced-biotec-facials
我尝试了以下代码在htaccess:
Options +FollowSymLinks
RewriteEngine on
RewriteRule services-advanced-biotec-facials$ services?s=10
但是url正在变成:https://www.example.com/services-advanced-biotec-facials
我也尝试了以下代码在htaccess:
Options +FollowSymLinks
RewriteEngine on
RewriteRule services/advanced-biotec-facials$ services?s=10
代码不能使用/services/
我已经把我的htaccess复制到下面的TXT文件中共享:
https://www.nrbeauty-dubai.com/share.txt
请帮忙,我已经浪费了很多时间。
同时,我需要将旧的动态URL重定向到新的重写URL。
提前感谢。
你试过交换它们吗
RewriteRule ^services?s=10$ http://www.example.com/services/advanced-biotec-facials/ [R=301,L]