htaccess重定向后从网址隐藏子目录

时间:2018-07-10 09:22:37

标签: php .htaccess server url-redirection

我在本地服务器上运行了相同的应用程序-一个在“ localhost”中,另一个在“ localhost / bss /”中。我的域端口已转发给他们。因此www.domain.com:1111和sub.domain2.info:1111指向本地主机。现在他们两个都显示localhost。我需要将sub.domain2.info:1111(localhost)重定向到sub.domain2.com:1111/bss/(localhost / bss),但不想看到'/ bss'

我在localhost中的.htaccess当前是这样的-

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^(.*)$ /index.php/$1 [L]

Options -Indexes 

RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www\.)sub.domain2.info:1111$
RewriteRule (.*) /bss/$1 [R=301,L]

在localhost / bss中的.htaccess中没有什么特别的-

RewriteEngine On
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^(.*)$ /index.php/$1 [L]

Options -Indexes

非常感谢您的回复。尝试了一些,但似乎无济于事!

1 个答案:

答案 0 :(得分:0)

假设您正在使用Apache Server实现此目的。如果您在本地环境中工作,则还可以尝试使用虚拟主机 您可以为您的子域尝试这个吗

RewriteEngine on

RewriteCond %{HTTP_HOST} ^sub\.domain2\.com$
RewriteCond %{REQUEST_URI} !^/bss
RewriteRule ^(.*)$ /bss/$1 [L]

通过查看评论添加此内容,您可以设置virtualhosts in linux

顺便说一句,我不明白您为什么在域名中使用这些端口