Forum Moderators: phranque
When i upload the site to the hosting server, the page request throws me an 500 Internal Server Error.
The htaccess line that is causing this behaviour is:
RewriteRule ^projects/something/?$ /plugins/something [R=301,NC,L]
Here is the whole htaccess:
# Start
RewriteEngine On
# Specials
RewriteRule ^projects/something/?$ /plugins/something [R=301,NC,L]
# WordPress
RewriteBase /
RewriteCond %{REQUEST_FILENAME}!-f
RewriteCond %{REQUEST_FILENAME}!-d
RewriteRule . /index.php [L]
What could be wrong?