我有两个CMS,应该在同一个域中播种。 根据url的外观,htaccess会将任务发送到TYPO3或Wordpress。 如果没有ProxyPass / Reverse,则htaccess会加载内容,但会将URL更改为cms url,但我想保留输入的URL。 当我上传ProxyPass变量时,出现500错误。 但是当我保持500错误消失时。
我想念什么?
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www\.)?route-root.domain\.de$ [NC]
RewriteRule ^(.*)$ http://www.route-wp.domain.de/$1 [NC,P,L]
</IfModule>
<IfModule mod_proxy.c>
ProxyPass / http://www.route-wp.domain.de/
ProxyPassReverse / http://www.route-wp.domain.de/
</IfModule>
答案 0 :(得分:0)
我想,我没做错什么。
我的猜测是我的主人不允许我使用此指令。
当我尝试通过ErrorLog
创建日志文件时,我也得到了500。