gpt4 book ai didi

php - htaccess/url 使用 Silex、XAMPP 和多文件夹结构重写

转载 作者:可可西里 更新时间:2023-11-01 13:27:19 28 4
gpt4 key购买 nike

我已经尝试搜索多个以前的线程,以在 XAMPP 上为 Silex 应用程序正确设置 url 重写,但仍然无法解决这个问题。这就是我想要完成的。

我正在使用 XAMPP,这里是我的 htdocs 文件夹的结构:

    - xampp 
- htdocs
- app1
- app2
- app3 <silex application>
.htaccess file (outside of web folder)
- web
index.php file

我现在可以做http://localhost:50000/msk/web/cte .我的问题是如何从中摆脱“网络”(即 http://localhost:50000/msk/cte )

我觉得我遗漏了一些小东西,但我想不通。

    <IfModule mod_rewrite.c>
Options -MultiViews

RewriteEngine On
RewriteBase /msk/web/
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]
</IfModule>

LoadModule rewrite_module modules/mod_rewrite.so 在我的配置中没有注释。我也没有使用虚拟主机。

谢谢

最佳答案

试试这个

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

关于php - htaccess/url 使用 Silex、XAMPP 和多文件夹结构重写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54636944/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com