mod-rewrite |
[eluser]aclm[/eluser]
Finally got it to work. Sort of... Only problem is that it doesn't load my flash files and I'm getting an error when the form is submitted. Error below: The URI you submitted has disallowed characters. URL in browser: http://www.website.com/?number=&number=5...x=103&y=29 Besides that everything seems to work. But I need to get those other things working. If you are hosting with gatorhost.com you need to have the .htaccess file in the public_html. Below is the code: <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?$1 [L] </IfModule> AddHandler application/x-httpd-php5 .php AddHandler application/x-httpd-php .php Thank you |
Messages In This Thread |
mod-rewrite - by El Forum - 01-07-2008, 10:38 PM
mod-rewrite - by El Forum - 01-07-2008, 11:10 PM
mod-rewrite - by El Forum - 01-07-2008, 11:47 PM
mod-rewrite - by El Forum - 01-08-2008, 12:22 AM
mod-rewrite - by El Forum - 01-08-2008, 01:39 AM
|