重定向并使用.htaccess文件重写我的URL?

lkaoscv7  于 2023-08-06  发布在  其他
关注(0)|答案(1)|浏览(122)

重定向并使用**.htaccess文件重写我的URL**?
重复的内容,2链接相同的内容。
第一个月
请重定向到下面的URL
https://www.pooeen.com/viewtopic.php?t=30
我期待着尽快收到你的来信。
预先感谢您的宝贵合作。

<IfModule mod_rewrite.c>

RewriteEngine On

RewriteBase /

RewriteCond %{THE_REQUEST} ^GET\\ .\*/index\\.(php|html)\\ HTTP

RewriteRule ^(.\*)index\\.(php|html)$ /$1 \[R=301,L\]

</IfModule>

字符串

mfuanj7w

mfuanj7w1#

使用所显示的示例,请尝试以下.htaccess规则。

RewriteEngine ON

##Using THE_REQUEST for catching references and using them later on.
RewriteCond %{THE_REQUEST} \s/(viewtopic\.php)\?f=(?:[^&]*)&(t=\d+)\s [NC]
RewriteRule ^ /%1?%2 [R=301,L]

字符串

相关问题