R
RadNadz
Guest
Let's say I'm working on http://sub.domain.org.
mod_rewrite exists in the modules directory and is enabled in httpd.conf. I have tried setting the rewrite base to /, /sub/, /subdomains/sub/. I'm testing the module by rewriting http://sub.domain.org/google.html to google.com.
Does anyone have a suggestion?
mod_rewrite exists in the modules directory and is enabled in httpd.conf. I have tried setting the rewrite base to /, /sub/, /subdomains/sub/. I'm testing the module by rewriting http://sub.domain.org/google.html to google.com.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteOptions Inherit
RewriteBase /
RewriteRule ^google.html$ http://www.google.com/ [R=301]
</IfModule>
Does anyone have a suggestion?