干净 URL 上的 PHP 问号

发布于 2024-12-12 09:29:50 字数 766 浏览 0 评论 0原文

我目前正在尝试了解干净的网址。我曾经使用过Windows。 我切换到 ubuntu 时突然我的 .htaccess 似乎无法工作 这是我的 htaccess

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>

所以我有这个网址

http://localhost/index.php/my_name/

我期待它说“my_name”浏览器中的字符串

hello my_name

但只有当我添加“?”时它才会起作用在 URI 中

http://localhost/index.php?/my_name/

我很确定 mod_rewrite 已启用。我什至检查了我的 phpinfo()

i am currently trying to learn about clean urls. i was using windows once.
i switched to ubuntu when suddenly my .htaccess seems to be not working
here is my htaccess

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>

so i have this url

http://localhost/index.php/my_name/

i was expecting it to say the 'my_name' string in the browser

hello my_name

but it would only work whenever i add a '?' in the uri

http://localhost/index.php?/my_name/

i am pretty sure mod_rewrite is enabled. i even checked my phpinfo()

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

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

发布评论

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

评论(2

寄居人 2024-12-19 09:29:50

听起来重写模块被禁用了。编辑您的 apache 配置并加载 mod_rewrite 的动态模块(如果可用)。它看起来像这样:

LoadModule rewrite_module modules/mod_rewrite.so

如果您使用的是 Ubuntu,请运行 sudo a2enmod rewrite 来通过重新启动 Apache 服务器来启用以下模块:

sudo /etc/init.d/apache2 restart

It sounds like the rewrite module is disabled. Edit your apache configuration and load the dynamic module for mod_rewrite if available. It would look like this:

LoadModule rewrite_module modules/mod_rewrite.so

If you're using Ubuntu, run sudo a2enmod rewrite to enable the module following by restarting the Apache server:

sudo /etc/init.d/apache2 restart
白芷 2024-12-19 09:29:50

找到了解决方案。转储 $_SERVER 变量并使用 REQUEST_URI 索引,因为 QUERY_STRING 不显示任何内容。会+1 Lekensteyn的答案,因为它引导我走上了正确的道路

Found a solution. dumped the $_SERVER variable and used the REQUEST_URI index since QUERY_STRING does not display anything. will +1 Lekensteyn's answer since it led me to the right path

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文