atlanis
New Member
- Messages
- 24
- Reaction score
- 0
- Points
- 0
I'm not sure if this is the right forum or not, but here goes.
I have the following setup:
Main Domain: http://atlanis.pcriot.com/
Subdomain: http://evil.atlanis.pcriot.com/
Subdomain root: /public_html/evil/
/public_html/evil/.htaccess:
I'm trying to turn http://evil.atlanis.pcriot.com/user/maryjane into http://evil.atlanis.pcriot.com/sig.php?user=maryjane. I have verified that the substitution URL is working, but the rewritten version (/user/maryjane) is giving me a 404 error. What can I do to fix it? I read on the forums that free hosts have mod_rewrite, so it should work if my .htaccess is done right (which is apparently isn't).
I have the following setup:
Main Domain: http://atlanis.pcriot.com/
Subdomain: http://evil.atlanis.pcriot.com/
Subdomain root: /public_html/evil/
/public_html/evil/.htaccess:
Code:
RewriteEngine On
RewriteBase /
RewriteRule ^/user/(.+)/?$ /sig.php?user=$1 [L]