当我没有域名时,我不能重写托管上的 URL 吗?

发布于 2024-11-04 22:46:01 字数 613 浏览 0 评论 0原文

我可以在以前的共享主机中重写 .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 技术交流群。

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

发布评论

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

评论(1

无尽的现实 2024-11-11 22:46:01

没有任何技术原因说明重写规则需要以任何方式与域相关。

托管服务可能具有不同级别的帐户,其中对 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文