我正在寻找.htaccess
执行以下操作的:
对于访问
mydomain.com
的用户,服务器应该index.html
从根目录返回文件。对于访问
mydomain.com/something/
、mydomain.com/anything/123/
、mydomain.com/some%20encoded%20text
等的用户,服务器应该index.php
从根目录返回文件,并将其后的文本www.mydomain.com/
作为 PHP$_GET
变量传递。
我尝试了 WordPress .htaccess
:
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
但这会将所有内容重定向到index.php
文件。