mod_rewrite php mysql

前端 未结 4 1777
南旧
南旧 2021-01-16 01:03

I\'m really new at mod_rewrite and i have been trying to figure this out but really stuck. p Here is my issue.

I have a page http://example.com/user/?s=81 ?s=81 is

4条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-01-16 01:36

    I have almost sorted it out and here is the solution so far: Here is the .htaccess row

    RewriteRule ^([a-z0-9_-]+)$ user/?s=$1 [L,NC]

    Then in the index file i have the following: $trafikskola_id = mysql_real_escape_string($_GET['s']);

    $vilken_trafikskola = mysql_query("SELECT * FROM users where slug='$trafikskola_id'") or exit(mysql_error());

    In the database i have create slug field and inside that on row 81 added nookie and my url looks like

    http://mypage.com/nookie instead of http://mypage.com/user/?s=81 =))

    However i have the issue that i can not have link http://mypage.com/nookie/ to have a forwardslash

    And aswell non of my css - js - images are working.. Any ideas to solve those issues?

提交回复
热议问题