You are viewing a plain text version of this content. The canonical link for it is here.
Posted to wiki-changes@httpd.apache.org by Apache Wiki <wi...@apache.org> on 2007/07/02 15:26:20 UTC

[Httpd Wiki] Update of "Rewrite/Troubleshooting/HtaccessIgnored" by noodl

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Httpd Wiki" for change notification.

The following page has been changed by noodl:
http://wiki.apache.org/httpd/Rewrite/Troubleshooting/HtaccessIgnored

The comment on the change is:
Add simple rule check

------------------------------------------------------------------------------
  
   1. If you have ensured that mod_rewrite is loaded, and that !RewriteRule is enabled for htaccess files, it could be that your rules are [:Rewrite/Troubleshooting/Looping:looping].
  
-  1. See step one.
+  1. If none of the above steps help, try a very simple rewrite to check if the module is enabled. For example:
  
+ {{{
+ RewriteEngine On
+ # Should redirect all requests to example.com
+ RewriteRule .* http://example.com/
+ }}}
+