简体   繁体   中英

Getting 500 Server Error with RewriteEngine On

I am trying to do some basic .htaccess file stuff and it will not allow me to use RewriteEngine On. Can anyone help?

Here is the .htaccess file

RewriteEngine On


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

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

我通过将[QSA, L]更改为[QSA, L]来工作[QSA,L]消除了工作空间!

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM