有没有办法将所有访问我网站的流量重定向到特定页面?我的免费主机确实支持PHP.不知道这是否适合此操作.谢谢.
解决方法:
如果您的主机基于Apache并且支持mod_rewrite,请使用该主机.例如. wordpress典型的ruite,它将请求重定向到不存在的文件/文件夹到index.php,并传递原始URL:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>