0
내부 URL : example.com/abc/xyz/rule.php?price=1&pass=2
외부 URL : example.com/abc/xyz/rule/1/2
재 작성 기본 규칙 - PHP
는하지만 CSS를, JS 파일이 외부 URL에서 발효되지 않습니다. 내 htaccess로 파일 :
RewriteEngine On
RewriteBase /example.com/abc/
RewriteRule ^rule/([0-9]+)/([0-9]+)/?$ rule.php?price=$1&pass=$2
당신의 .htaccess – Johan
ORIGINAL URL의 내용을 게시하시기 바랍니다 사용하여 기본 URL? //example.com/abc/xyz/rule.php을 가격 = 1 & pass = 2 REWRITED TO : http : //example.com/abc/xyz/rule/1/2 그러나 CSS, js 파일은 REWRITED URL에서 적용되지 않습니다. 내 htaccess로 파일 : RewriteBase에서 가 한다 RewriteEngine는 RewriteRule의 규칙 ^/([0-9] +)/([0-9] +)/$의 rule.php을 /example.com/abc/? price = $ 1 & pass = $ 2 – Vithya
대신 질문을 업데이트하십시오. – Znarkus