.htaccess pretty urls

前端 未结 1 1639

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:

    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)
提交回复
热议问题