我希望能够将所有子域重定向到文件夹:
RewriteCond %{HTTP_HOST} ^([^/.]+)\.example\.com$
RewriteRule (.+)$ "http://example.com/subdomains/%1" [L,P]
例如,如果某些访问sub1.example.com
,它会保留网址但显示example.com/subdomains/sub1
,如果sub1目录不存在,则会显示example.com/404
这可能吗?
我尝试了上面的代码,但它显示了我:
Forbidden
You don't have permission to access /index.php on this server.
Wordpress说:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
在我的htaccess文件的顶部是:
RewriteEngine On
DirectoryIndex index.php
RewriteCond %{HTTP_HOST} admin.domain.com$
RewriteRule ^(.*)$ /admin/system/$1 [L]
答案 0 :(得分:10)
当您使用完整网址作为目标时,您的上述.htaccess会从外部重定向来电。
在你的问题中,你说你想保留主机名,所以我认为这是要求。
RewriteEngine On
# Rewrite known subdomains to /subdomains/{subdomain}/
RewriteCond %{HTTP_HOST} ^([^/.]+)\.example\.com$
RewriteCond %{REQUEST_URI} !^/subdomains [NC]
RewriteCond %{REQUEST_URI} !^/404 [NC]
RewriteRule ^(.+)$ /subdomains/%1/ [L]
所以,如果请求是
http://foo.example.com/hello
浏览器中的URL保持不变,但内部映射到
/subdomains/foo/
# Rewrite missing unknown subdomains to /404/
RewriteCond %{HTTP_HOST} ^([^/.]+)\.example\.com$
RewriteCond %{REQUEST_URI} ^/subdomains [NC]
RewriteCond %{REQUEST_URI} !^/404 [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.+)$ /404/ [L]
所以,如果请求是
http://bar.example.com/hello
浏览器中的URL保持不变,但内部映射到
/subdomains/bar/
来自1的第一个RewriteRule
。
如果/subdomains/bar/
不存在,则来自2的第二个RewriteRule
将启动并在内部将其映射到
/404/
我实际使用示例代码测试了所有这些代码,可在此处获取:https://github.com/janpapenbrock/stackoverflow-36497197
答案 1 :(得分:3)
我说您遇到了许可问题。我猜你的Apache服务器运行为Select * from @CompletedTotalValues
用户。使用apache
授予chmod
访问此路径的权限。