我的问题是,在MAMP下,ROOT目录被认为与LIVE不同,我真的不知道MOD_REWRITE,所以我不能重用其他一些例子
我可以做一些if条件,这样它既适用于LIVE又适用于LOCAL?
这是LIVE
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
这是LOCAL
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /project_directory_under_htdocs/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /project_directory_under_htdocs/index.php [L]
</IfModule>