404 not found for install(Kirby)

If i setup the domain,i will take 404 error.How we are fix the error?I used kirby and wamp and php’s last version. I read some information and people say you should edit rewrite code.Please help me…

Kirby .htaccess

rewrite rules

# enable awesome urls. i.e.: # http://yourdomain.com/about-us/team RewriteEngine on # make sure to set the RewriteBase correctly # if you are running the site in a subfolder. # Otherwise links or the entire site will break. # # If your homepage is http://yourdomain.com/mysite # Set the RewriteBase to: # RewriteBase /mysite

In some enviroments it’s necessary to

set the RewriteBase to:

RewriteBase /

block text files in the content folder from being accessed directly

RewriteRule ^content/(.*).(txt|md|mdown)$ index.php [L]

block all files in the site folder from being accessed directly

except for requests to plugin assets files

#RewriteRule ^assets/plugins/([a-zA-Z0-9.-%=]+)/(.*)$ site/plugins/$1/assets/$2 [L,N]
#RewriteCond $1 !^plugins/[a-zA-Z0-9.-
%=]+/assets/.*
RewriteRule ^site/(.*) index.php [L]

block direct access to kirby and the panel sources

RewriteRule ^(kirby|panel/app|panel/tests)/(.*) index.php [L]

make panel links work

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^panel/(.*) panel/index.php [L]

make site links work

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) index.php [L]

Additional recommended values

Remove comments for those you want to use.

AddDefaultCharset UTF-8

php_flag short_open_tag on

First of all, please check if the mod_rewrite module is enables.

If so, you might have to uncomment the line:

#RewriteBase /

to

RewriteBase /

or

RewriteBase /your_kirby_folder

depending on your setup.