Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save rajucs/f034a8a6549ef6db253ba94c95f16452 to your computer and use it in GitHub Desktop.
Save rajucs/f034a8a6549ef6db253ba94c95f16452 to your computer and use it in GitHub Desktop.
This problem is raised for .htaccess file.
you need to modifiy .htaccess
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /yourprojectname/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /yourprojectname/index.php [L]
</IfModule>
# END WordPress
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment