URL 目录作为参数

URL Directory as parameter

我想把一个URL目录变成一个参数。如何做到这一点?

例如

myurl.com/directory1/?param2=test1
myurl.com/directory2/?param2=test2
myurl.com/directory3/?param2=test3

反映这一点

myurl.com/index.php?param1=directory1&param2=test1
myurl.com/index.php?param1=directory2&param2=test2
myurl.com/index.php?param1=directory3&param2=test3

htaccess 解决方案会很棒。谢谢!

没有足够的信息,你有提取目录的代码吗?是否来自数据库等

为此提供您当前的代码块,我们可以帮助您修改它。

所以这就是我最终的解决方案。

在我的 .htaccess 文件中

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)/(.)?$ index.php?param1= [L,QSA]

我必须检查我所有的图像源和样式表源,并确保在每个源的开头都有一个斜线,以便从根目录中获取图像,我还必须在中设置虚拟主机WAMP 进行适当的测试。

谢谢!