Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要用 .htaccess 重定向 1 个单页,但我想不通
examp.co/?language=en
应该重定向到
examp.co/bla/
theindex.php隐藏在这里,因为它已经被重定向到 root /。
index.php
/
通过启用 mod_rewrite 和 .htaccess httpd.conf,然后将此代码放在您.htaccess的DOCUMENT_ROOT目录下:
httpd.conf
.htaccess
DOCUMENT_ROOT
Options +FollowSymLinks -MultiViews # Turn mod_rewrite on RewriteEngine On RewriteBase / RewriteCond %{QUERY_STRING} ^language=en(&|$) [NC] RewriteRule ^$ /bla/? [L,R=301]