。htaccess在清除网址时返回404错误

问题描述 投票:0回答:1

我正在寻找帮助,我正在重写干净的PHP URL,我希望我的main_blog.php?post_slug="something"/Something

这是我编写的代码,但是当我尝试将其添加到本地主机时,它可以正常运行,但不适用于实时服务器

RewriteEngine on             
# Rewrite for blog post  title=Title-Goes-Here

RewriteRule ^([0-9a-zA-Z]+)$ main_blog.php?post_slug=$1 [NC,L]

以下是.htaccess代码,我想知道为什么这显示404错误?

我期待获得帮助

php url blogs
1个回答
0
投票

您的代码不错。如果您使用的是Apache,请在网络服务器中检查mod_rewrite模块

https://httpd.apache.org/docs/current/mod/mod_rewrite.html

© www.soinside.com 2019 - 2024. All rights reserved.