使用 .htaccess 清理 URL?

发布于 2024-10-23 22:48:08 字数 719 浏览 0 评论 0原文

如何简单地替换大写字母(我找到了, strtolower() )、符号和空格,而不这样做?

$url = str_replace( " ", "-", "$title");
$url1 = str_replace( "!", "", "$url");
$url2 = str_replace( "?", "", "$url1");
$url3 = str_replace( ",", "", "$url2");
$url4 = str_replace( ":", "", "$url3");
$url5 = str_replace( "'", "", "$url4");
$url6 = str_replace( ".", "", "$url5");

其次,我怎样才能创建这个URL, http://www. mysite.com/index.php?id=The-house-from-Up 通过 http://www.mysite.com/articles/The-house-from-Up 使用 .htaccess?目前我刚刚收到 500 内部服务器错误。

请任何帮助/指导! :)

How can I replace capital letters (I found it, strtolower() ), symbols and spaces simply, without doing it like this?

$url = str_replace( " ", "-", "$title");
$url1 = str_replace( "!", "", "$url");
$url2 = str_replace( "?", "", "$url1");
$url3 = str_replace( ",", "", "$url2");
$url4 = str_replace( ":", "", "$url3");
$url5 = str_replace( "'", "", "$url4");
$url6 = str_replace( ".", "", "$url5");

Secondly, how can I make this URL, http://www.mysite.com/index.php?id=The-house-from-Up be accessed through http://www.mysite.com/articles/The-house-from-Up using .htaccess? At the moment I just get a 500 internal server error.

Any help/guidance please! :)

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

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

发布评论

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

评论(1

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