The server rebooted. Error remained.

Incorrect link
- Eternity
- Thread is marked as Resolved.
-
-
Disable the url rewrites and chat begins to work. ((
-
-
Thank you. Let's wait for him.
-
There are two ways to do so:
create an htaccess file for each application and move it into the folder with the following content as Alexander Ebert Suggested:
Apache Configuration<IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?$1 [L,QSA] </IfModule>
or if you only want one htaccess file (same as I do want) you have to change it a bit:
My rewrites look like this:
Apache Configuration
Display More#SEO_START <IfModule mod_rewrite.c> RewriteEngine on RewriteBase / # Rewrite application /marketplace/ RewriteCond %{SCRIPT_FILENAME} !-d RewriteCond %{SCRIPT_FILENAME} !-f RewriteRule ^marketplace/(.*)$ marketplace/index.php?$1 [L,QSA] # Rewrite application /blog/ RewriteCond %{SCRIPT_FILENAME} !-d RewriteCond %{SCRIPT_FILENAME} !-f RewriteRule ^blog/(.*)$ blog/index.php?$1 [L,QSA] # Rewrite application /filebase/ RewriteCond %{SCRIPT_FILENAME} !-d RewriteCond %{SCRIPT_FILENAME} !-f RewriteRule ^filebase/(.*)$ filebase/index.php?$1 [L,QSA] # Rewrite application /calendar/ RewriteCond %{SCRIPT_FILENAME} !-d RewriteCond %{SCRIPT_FILENAME} !-f RewriteRule ^calendar/(.*)$ calendar/index.php?$1 [L,QSA] # Rewrite application /gallery/ RewriteCond %{SCRIPT_FILENAME} !-d RewriteCond %{SCRIPT_FILENAME} !-f RewriteRule ^gallery/(.*)$ gallery/index.php?$1 [L,QSA] # Rewrite application /chat/ RewriteCond %{SCRIPT_FILENAME} !-d RewriteCond %{SCRIPT_FILENAME} !-f RewriteRule ^chat/(.*)$ chat/index.php?$1 [L,QSA] # Rewrite application /easylink/ RewriteCond %{SCRIPT_FILENAME} !-d RewriteCond %{SCRIPT_FILENAME} !-f RewriteRule ^easylink/(.*)$ easylink/index.php?$1 [L,QSA] # Rewrite application / RewriteCond %{SCRIPT_FILENAME} !-d RewriteCond %{SCRIPT_FILENAME} !-f RewriteRule ^(.*)$ index.php?$1 [L,QSA] </IfModule> #SEO_END
-
Both options work. Thank you very much!
-
Glad it does now
Have fun