htaccess 中重写规则的例外情况
如何做到:
RewriteRule ^([^/]+)/?$ spotsite.php?pid=$1 [QSA,L]
与我的主页(www.mysite.com
)不匹配?到目前为止,每次我导航到我的主页时,它也会烦人地将我重定向到这个点站点..我不希望这种情况发生..我只想仅当它是 www.mysite.com 时才重定向/此处随机数
How do I make it so that:
RewriteRule ^([^/]+)/?$ spotsite.php?pid=$1 [QSA,L]
Doesn't match my homepage, which is www.mysite.com
? As of now, every time I navigate to my main page, it annoyingly redirects me to this spotsite as well.. I don't want this to happen.. I only want to redirect only if it's www.mysite.com/somerandomnumberhere
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在提到的规则之前添加此规则:
将 index.html 更改为您的目录索引页(index.php 等)。如果您希望保留 url,您也可以仅将 index.html 替换为
/
。Add this rule prior to the one mentioned:
Change index.html with whatever your directory index page is (index.php, etc). You can also replace index.html with just
/
if you wish to preserve the url.