how to set php-rewrite on mamp?

127 views Asked by At

I am using mamp on my mac for php devolpement. For several days ,I want to set my php-rewrite on mamp;on my windows ,i have set php-rewrite successfully 2 months ago.

Now , the php-rewrite works ,I can visit my page without index.php in URL but, I can't visit .html files. When I try to visit .html files, the browser says:

You don't have permission to access /application/views/admin/login.html on this server.

My .htaccess is setting as below,my framework is codeigniter:

<IfModule mod_rewrite.c>
RewriteEngine on

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

RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
</IfModule>

I'm wating for the anwser,thanks!

1

There are 1 answers

3
Max Flex On BEST ANSWER

You need to change the folder's permissions from SSH to make it readable to "world":

chmod -R 775 /application/views/admin/

Or just right-click the file from your IDE and change permissions manually