我想用.htaccess摆脱一些路径

时间:2017-03-03 05:38:09

标签: php .htaccess url mod-rewrite

我的网址看起来像这样 https://sabaclothingscom.000webhostapp.com/sabaclothings/

https://sabaclothingscom.000webhostapp.com/sabaclothings/contacts

  

我想摆脱这个==> .000webhostapp.com/sabaclothings/

这样我的网址就会显示为

https://sabaclothings.com/     <=== index


https://sabaclothings.com/contacts

我已使用此代码成功删除.html扩展程序===&gt;

RewriteEngine on


RewriteCond %{THE_REQUEST} /([^.]+)\.html [NC]
RewriteRule ^ /%1 [NC,L,R]

RewriteCond %{REQUEST_FILENAME}.html -f
RewriteRule ^ %{REQUEST_URI}.html [NC,L]

请提前帮助我...

1 个答案:

答案 0 :(得分:0)

.000webhostapp.com部分是网址的“主机”或“域”部分。

您无法使用rewrite规则删除“域名”部分。

您可以通过拥有自己的域并将域指向DNS(域名服务器)中的Web服务器的IP来摆脱该域。然后,您需要配置Web服务器以接受域。

结果仍然是sabaclothings.com,而不是sabaclothingscom