我正在尝试为我丑陋的 URL 制作一个外观友好的 URL。
mod
目录包含一个index.php
和一个user.php
文件。只有index.php
一些链接,各种格式,到用户页面。
像这样的目录路径mod
:http://localhost/mod/
此时用户的网址是这样的..
http://localhost/mod/user.php?id=Ricky etc..
我需要把那个丑陋的变成好看的像这样的..
http://localhost/mod/user/Ricky
我在我的 htaccess 文件中尝试过,这是迄今为止该文件中的代码。
# Enable Rewriting
RewriteEngine on
# Rewrite user URLs
# Input: user/NAME/
# Output: user.php?id=NAME
RewriteRule ^user/([a-z]+)/?$ user.php?id=$1
这对我不起作用。希望有人能帮助我。谢谢你。