我是使用 .htaccess 的新手,我在使用mod_rewrite
apache 时遇到了麻烦。
所以基本上我有一个网址。 www.website.com/test/index.php
我希望它更短www.website.com/t/index.php
所以在我的.htaccess
文件中,我有这三行:
RewriteEngine On
RewriteBase /
RewriteRule ^test/(.*) t/$1 [R=301,L]
这非常适合将我引导到 www.website.com/t/index.php 但 index.php 页面不会加载并且只会显示404 error
. 任何帮助将不胜感激。