내 URL을 다시 작성하려고하지만 여전히 성공하지 못했습니다. 나는 2 일 이후로 봤지만 아무런 성공도하지 못했다. 이 페이지URL에서 폴더 이름 숨기기를 다시 작성
localhost/project/index.php
두 개의 버튼이 있습니다 : 나는
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{HTTP_HOST} localhost [NC]
RewriteCond %{REQUEST_URI} !^/folder1/
RewriteRule ^(.*)$ /folder1/$1 [L]
이 내 디렉토리가 내 htaccess로 코드를 붙여 넣기하고있다. 버튼 하나를 클릭하면이 버튼을 두 후 리디렉션해야 클릭 한 경우/index.php에 다른 FOLDER1로 리디렉션해야 Folder2 폴더/index.php에
localhost/project/folder1/index.php
localhost/project/folder2/index.php
Basically I don't want display folder1 or folder2 directory names.
any idea please thanks
내가 같이해야 표시하려면 실제로 사용 URL :
로컬 호스트/project/
. 어떤 방식으로 두 폴더를 구별해야합니다. –
내가 표시하고자하는 실제 URL은 localhost/project/ – Raheel
입니다. 파일 이름은? localhost/project/folder1 및 localhost/project/folder2 또는 무엇입니까? localhost/project가 두 개의 다른 위치를 참조하도록 할 수는 없습니다. –