当我没有域名时,我不能重写托管上的 URL 吗?
我可以在以前的共享主机中重写 .htaccess 中的 URL。 今天,我转移到新的托管。我没有域,并且可以访问备用域(托管提供),但在使用 Rewriterule 时不能。我问支持者,他们回答:
当我没有域名时,我无法重写托管上的 URL。他们说得对吗?
public_html 中的 htaccess :
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ webroot/ [L]
RewriteRule (.*) webroot/$1 [L]
</IfModule>
webroot 中的 htaccess :
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]
</IfModule>
I can rewrite URL in .htaccess in previous shared hosting.
Today, i tranfer to new hosting. I don't have domain and i access to alternate domain ( hosting provide ) , but can't when use Rewriterule. I ask a supporter and they answer:
I can't rewrite URL on hosting when i don't have domain . Are they right ?
htaccess in public_html :
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ webroot/ [L]
RewriteRule (.*) webroot/$1 [L]
</IfModule>
htaccess in webroot:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]
</IfModule>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有任何技术原因说明重写规则需要以任何方式与域相关。
托管服务可能具有不同级别的帐户,其中对 mod_rewrite 和域名的访问达到相同的级别。
There is no technical reason why a rewrite rule needs to be related in anyway to a domain.
It is possible the hosting service has grades of accounts in which access to mod_rewrite and domain names arrive at the same grade.