如何在 url 参数中使用 .(点或句点)在 htaccess 中创建重写规则
这是我的示例网址:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的 .htaccess 文件中尝试此规则:
Try this rule in your .htaccess file: