如何在 url 参数中使用 .(点或句点)在 htaccess 中创建重写规则

发布于 2024-11-03 21:48:12 字数 458 浏览 1 评论 0原文

这是我的示例网址:

http://mydomain.com/folder/subfolder/index.php?site=www.othersite.com

我想这样重写它:

http:// /mydomain.com/folder/subfolder/www.othersite.com

我尝试

RewriteEngine on

RewriteBase /folder/subfolder/

RewriteRule ^([A-Za-z0-9\\-\\.]+)$ index.php?site=$1 [L]

打印数组 $_GET 并将“site”参数的值返回为“index.php”,它没有返回“www” .othersite.com'

如何这可以吗?

谢谢,

here is my sample url:

http://mydomain.com/folder/subfolder/index.php?site=www.othersite.com

i want to rewrite it this way:

http://mydomain.com/folder/subfolder/www.othersite.com

i tried

RewriteEngine on

RewriteBase /folder/subfolder/

RewriteRule ^([A-Za-z0-9\\-\\.]+)$ index.php?site=$1 [L]

i printed the array $_GET and returns the value of the 'site' parameter as 'index.php', it didn't return 'www.othersite.com'

how can this be done?

thanks,

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

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

发布评论

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

评论(1

泪意 2024-11-10 21:48:12

在您的 .htaccess 文件中尝试此规则:

Options +FollowSymlinks -MultiViews
RewriteEngine on

RewriteCond %{QUERY_STRING} !^site= [NC]
RewriteRule ^(folder/subfolder)/(.*)$ /$1/index.php?site=$2 [L,NC,QSA]

Try this rule in your .htaccess file:

Options +FollowSymlinks -MultiViews
RewriteEngine on

RewriteCond %{QUERY_STRING} !^site= [NC]
RewriteRule ^(folder/subfolder)/(.*)$ /$1/index.php?site=$2 [L,NC,QSA]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文