user3124711
user3124711

Reputation: 1

File .htaccess is not working in php osclass cms

error in osclass cms

File .htaccess couldn't be filled out with the right content. Here's the content you have to add to the .htaccess file. If you can't create the file, please deactivate the Friendly URLs option.

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /clickgetview/
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /clickgetview/index.php [L]
</IfModule

Upvotes: 0

Views: 1717

Answers (1)

MgWebs
MgWebs

Reputation: 11

File .htaccess couldn't be filled out with the right content. Here's the content you have to add to the .htaccess file. If you can't create the file, please deactivate the Friendly URLs option.

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /clickgetview/
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /clickgetview/index.php [L]
</IfModule

Upvotes: 1

Related Questions