使用 htaccess 重写 URL

发布于 2024-10-31 01:28:23 字数 113 浏览 1 评论 0原文

如何重写 htaccess 中的 url

www.mywebsite.com/category.php?name="richard" 更改为 www.mywebsite.com/richard/

How to rewrite the url in htaccess

www.mywebsite.com/category.php?name="richard" change to www.mywebsite.com/richard/

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

笨笨の傻瓜 2024-11-07 01:28:23

您可以使用下面的代码来实现您的要求。

Options +FollowSymlinks
RewriteEngine on

RewriteCond %{QUERY_STRING} name=(.*)
RewriteRule category\.php$ /%1/

希望这对您有帮助...:)

You can use below code to achieve your requirement.

Options +FollowSymlinks
RewriteEngine on

RewriteCond %{QUERY_STRING} name=(.*)
RewriteRule category\.php$ /%1/

Hope this helps you... :)

半葬歌 2024-11-07 01:28:23

您是否使用过任何 PHP 框架(如 codenigter...等)?
你可以试试这个:

RewriteRule ^(.*)$ /category.php/name=$1 [L]

Are you used any PHP frameworks(like the codenigter... etc)?
You can try this:

RewriteRule ^(.*)$ /category.php/name=$1 [L]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文