Search the Community
Showing results for tags 'htaccess'.
Found 2 results
-
Yo, Trying to get folder like URL's working and I just cannot get them to work maybe i'm doing something wrong? [code] Options +FollowSymLinks RewriteEngine On RewriteCond %{HTTP_HOST} !^\.DOMAIN\.com$ [NC] RewriteRule ^(.+)/$ http://%{HTTP_HOST}/$1 [R=301,L] RewriteRule /module/(.*) index.php?module=$1 [/code] the last rule /module/ i can't seem to get to work? Is that the right code for htaccess or is there some php module i need installed or something? -Ian
-
Yo, So i am totally stumped and cannot get this to work. Basically I want folder like links where htaccess changes it from index.php?where=contact to /contact That is my current htaccess that doesn't work [code] RewriteEngine on RewriteRule file/^([^/\.]+)/?$ /index.php?url=$1 [L] [/code] Any ideas on how to fix please?