How to remove the question mark from the reference



  • There is a reference:

    brovkoantiques.ru/auction/?ult_auc_id=454 We need to see: brovkoantiques.ru/auction/ult_auc_id=454 Tell me what to do. If I rewrite the rule, I'll have a 404. How to remove the very addition of this issue in the form of a reference?



  • It'll have to be added to the file.htaccess.

    RewriteEngine On
    RewriteRule ^auction/ult_auc_id=([0-9]+)$ auction/?ult_auc_id=$1 [QSA,L]
    



Suggested Topics

  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2