본문 바로가기

Web Solution

마젠토 웹주소에서 index.php 지우기

마젠토를 이용하다보면.

http://www.aus-wellbeing.com.au/index.php/vitamins/women-s-health.html

요렇게 url 사이에 INDEX.PHP다 들어가는 것을 알 수 있어요.

 

보기싫죠!

지워야죠~!

 

생각보다 간단하네요

 

1. admin 로그인 하셔서 configuration > web 탭으로 가서

하이라이트한 두곳을 yes로 바꾼 후 저장합니다.

 

URL-rewriting

 

 

2. ftp에 접속하셔서 마젠토가 루트폴더에 설치되어있다면

.htaccess 에 아래 코드를 추가합니다.

 

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

 

만약 루트안의 /magento 라는 폴더에 설치되어있다면

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /magento /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /magento /index.php [L]
</IfModule>

 

 

간단하죵~~~!

오늘 당장 바꿔봐요!!