ht访问优化

发布于 2024-11-05 17:54:49 字数 332 浏览 0 评论 0原文

RewriteCond %{THE_REQUEST} \?event_id=156&app=([a-z]+)
RewriteRule ^events/(index.php)$ http://www.xyz.com/is2011/?app=%1  [R=301,L]

RewriteCond %{THE_REQUEST} \?event_id=156
RewriteRule ^events/(index.php)$ http://www.xyz.com/is2011/?  [R=301,L]

我只是想优化 htaccess 代码。我想合并以上两条规则。我也可以这样做吗?请给我你的建议。

RewriteCond %{THE_REQUEST} \?event_id=156&app=([a-z]+)
RewriteRule ^events/(index.php)$ http://www.xyz.com/is2011/?app=%1  [R=301,L]

RewriteCond %{THE_REQUEST} \?event_id=156
RewriteRule ^events/(index.php)$ http://www.xyz.com/is2011/?  [R=301,L]

I just want to optimize the htaccess code. I want to merge the above two rules. Can i do the same? Please give me your suggestions.

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

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

发布评论

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

评论(2

你丑哭了我 2024-11-12 17:54:49

只是猜测:

RewriteCond %{THE_REQUEST} \?event_id=156(&(app=([a-z]+)))?
RewriteRule ^events/(index.php)$ http://www.xyz.com/is2011/?%2  [R=301,L]

Just guessing:

RewriteCond %{THE_REQUEST} \?event_id=156(&(app=([a-z]+)))?
RewriteRule ^events/(index.php)$ http://www.xyz.com/is2011/?%2  [R=301,L]
七度光 2024-11-12 17:54:49

试试这个规则:

Options +FollowSymlinks -MultiViews
RewriteEngine on

RewriteCond %{QUERY_STRING} ^event_id=156(?:&(app=[a-z]+))? [NC]
RewriteRule ^events/index\.php$ http://www.xyz.com/is2011/?%1 [R=301,L,NC,NE,QSA]

Try this rule:

Options +FollowSymlinks -MultiViews
RewriteEngine on

RewriteCond %{QUERY_STRING} ^event_id=156(?:&(app=[a-z]+))? [NC]
RewriteRule ^events/index\.php$ http://www.xyz.com/is2011/?%1 [R=301,L,NC,NE,QSA]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文