Page is a not externally linkable
hp_solomon - 4:47 am on May 17, 2008 (gmt 0)
<Files "config.php"> <Files "common.php"> <IfModule mod_rewrite.c> I got this error when accessing a url like site.com/username Not Found The requested URL /ridz was not found on this server. Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
I tested the script on my site but it doesn't work. here is the complete script of .htaccess stored in the root directory of the site
Order Allow,Deny
Deny from All
</Files>
Order Allow,Deny
Deny from All
</Files>
RewriteEngine on
Options +FollowSymlinks
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]+)/$ /memberlist.php?mode=viewprofile&un=$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^clan/([^/]+)/?$ /clan_page.php?cn==$1 [L]
</IfModule>