我的.htaccess
文件中有以下内容:
#when the user types the domain name only
RewriteCond %{REQUEST_FILENAME} ^$
RewriteRule . /index2.php [L]
我的目标是在用户仅在浏览器地址栏中键入doman名称时运行index2.php
。但是,该代码似乎不起作用。
我也尝试过其他变化而没有成功:
#when the user types the domain name only
RewriteCond ! %{REQUEST_FILENAME}
RewriteRule . /index2.php [L]
和
RewriteRule ^/$ /index2.php [L]
答案 0 :(得分:1)
您不需要重写规则。只需在根目录中使用此行.htaccess:
DirectoryIndex index.php