htaccess 问号斜线

问题描述

我正在尝试使用 .htaccess

https://xyzzz.com/country.PHP?id=157 >> https://xyzzz.com/country/57/

https://xyzzz.com/tld.PHP?id=123 >> https://xyzzz.com/tld/123/

我试试

RewriteRule ^country/([a-zA-Z0-9-.]+)$ country.PHP?id=$1

我的理解有限,我只是尽力了。 有什么办法可以解决这个问题,或者我只是在做一些 htaccess 无法实现的事情...如果可能,请帮忙。

RewriteEngine On
RewriteBase /rectangle/

RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://domainsanalytics.com/$1 [R,L]

RewriteCond %{HTTP_HOST} ^www.domainsanalytics.com [NC]
RewriteRule ^(.*)$ https://domainsanalytics.com/$1 [L,R=301]

RewriteRule ^(country)/(\d+)/?$ $1.PHP?id=$2 [L]
RewriteRule ^(tld)/(\d+)/?$ $1.PHP?id=$2 [L]

这是我试图让 SEO 友好的 URL

https://domainsanalytics.com/country.php?id=219

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)