.htaccess pretty urls

前端 未结 1 1638

I would like to make my URLs pretty with htaccess.

I have only one variable id. So the pages are like index.php?id=1, index.php?id=2<

相关标签:
1条回答
  • 2020-12-21 23:05

    This works for me:

    RewriteEngine On
    RewriteCond %{SCRIPT_FILENAME} !-d
    RewriteCond %{SCRIPT_FILENAME} !-f
    RewriteRule ^([^/]+) index.php?id=$1 [L]
    

    if the index.php file is something like this:

    <?php
    import_request_variables('g', 'req_');
    var_dump($req_id);
    

    and you make a request to http://domain/1

    then index.php has the variable req_id=1 (because of the import_request_variables call)

    0 讨论(0)
提交回复
热议问题