.htaccess mod_rewrite > 500 Internal Server Error

前端 未结 7 1268
梦毁少年i
梦毁少年i 2020-12-02 03:03

I am using .htaccess.

My original link is:

http://example.com/CareerDays/index.php?u_type=admin

And I\'m trying to make it look lik

相关标签:
7条回答
  • 2020-12-02 03:46

    This RewriteRule would never match...

    You have to place the .htaccess in the root directory, with this code:

    RewriteEngine On
    RewriteRule ^v/([^/]*)$ CareerDays/index.php?u_type=$1 [L]
    
    0 讨论(0)
提交回复
热议问题