我的根基有两份名录:/dev
和/live
。
这些名录内的所有内容都有相对途径,例如<代码>/cs/type.cs或/js/home.js
。
我想能够改变使用网路的深层目录,以便相对途径能够成为<条码>/人/人/人式<条码/代码>等或<条码>/dev/css/上型.cs。
I have tried using the following code in .htaccess located inside the /live
directory:
RewriteEngine on
RewriteBase /live/
我还利用<代码>RewriteBase /public_html/live/进行了尝试。
但是,内容路径仍然是<条码>http://domain.com/cs/上型.css。 而不是<条码>http://domain.com/live/cs/type.cs 当我看这个网站时。
是否有任何想法?
谢谢。
EDIT>> Sorry I should explain that my root htaccess has the following rules pointing towards the two directories:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{HTTP_HOST} !^www.domain.com [NC]
RewriteCond %{HTTP_HOST} ^((www.)?([a-z]+).)domain.com [NC]
RewriteRule ^((www.)?([a-z]+).)domain.us$ /live/index.php?tag=%3 [L,P]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{HTTP_HOST} !^www.domain.com [NC]
RewriteCond %{HTTP_HOST} ^dev.((www.)?([a-z]+).)domain.com [NC]
RewriteRule ^((www.)?([a-z]+).)domain.us$ /live/index.php?tag=%3 [L,P]