使用此重写代码时出现问题。我想添加一些域(所有域都指向同一个服务器),并使它们有一个“隐藏”的URL前缀发送到服务器。
示例:您键入example-one.org/contact
,服务器将其视为/one/contact/
使用此代码时,我仍然收到500内部服务器错误。我把它通过一个htaccess tester看起来应该可以工作。
这是完整的htaccess代码,包括WordPress的默认值,而不使用example.org:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^discoverdowntownspringfield.org$ [NC]
RewriteRule ^((?!downtown-springfield/).*)$ /downtown-springfield/$1 [L,NC]
# 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
答案 0 :(得分:1)
您可以使用:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www\.)?example\.org$ [NC]
RewriteRule ^((?!one/).*)$ /one/$1 [L,NC]