我只是想知道是否有必要包含RewriteEngine On和Rewrite Base /每次添加重寫?例如,我想同時使用「從URL刪除QUERY_STRING」和「在一天中的某些特定時段阻止對文件的訪問^」(示例引用來自askapache.com)RewriteEngine強制所有重寫?
從URL中刪除QUERY_STRING在某些時段,以文件
RewriteEngine On
RewriteBase/
RewriteCond %{QUERY_STRING} .
RewriteRule ^login.php /login.php? [L]
塊訪問^
Options +FollowSymLinks
RewriteEngine On
RewriteBase/
# If the hour is 16 (4 PM) Then deny all access
RewriteCond %{TIME_HOUR} ^16$
RewriteRule ^.*$ - [F,L]
我還能將它們組合成以下?
Options +FollowSymLinks
RewriteEngine On
RewriteBase/
RewriteCond %{QUERY_STRING} .
RewriteRule ^login.php /login.php? [L]
# If the hour is 16 (4 PM) Then deny all access
RewriteCond %{TIME_HOUR} ^16$
RewriteRule ^.*$ - [F,L]
在此先感謝您的時間。
感謝喬恩,你的回答也解決了我的其他文件夾重定向問題。非常感謝您的意見。 – bernie 2013-02-19 00:02:18