Đỗ Tấn Phong
Đỗ Tấn Phong

Reputation: 1

what error with my htaccess file?

please help me to fix error on my .htaccess it return error 500

Options -MultiViews
RewriteEngine On

RewriteBase /mvc/public

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^(.+)$ index.php?url=$1 [SQA,L]

Upvotes: 0

Views: 44

Answers (1)

Ruben
Ruben

Reputation: 5095

The problem is with your flag in the RewriteRule. SQA is not a valid flag, but I'm assuming you meant QSA, so change SQA,L to QSA,L:

RewriteRule ^(.+)$ index.php?url=$1 [SQA,L]

Upvotes: 1

Related Questions