10/10/2018, 11:19 
               
            url rewrite trên localhost
               
					mình dùng wampp server 
đã bâtj mod_rewrite
dùng 2 file để test nhưng nó không chạy
trong thư mục cwwwwamppmail
có 2 file
1 .htaccess
--------------------------
# htaccess file
RewriteEngine On
RewriteBase /mail
RewriteRule ^index/(.*)$ /index.php?id=$1
--------------------------
2 index.php
<html>
	
<body >
<?php
if(isset($_GET['id']))
{
echo $_GET['id'];
}?>
		
<a href="index.php?id=567">wer</a>
<a href="index.php?id=567">wer</a>
<a href="index.php?id=567">wer</a>
<a href="index.php?id=567">wer</a>
<a href="index.php?id=567">wer</a>
<a href="index.php?id=567">wer</a>
<?php phpinfo(); ?>
</body>
</html>
---------------------
test localhost/mail
nhưng nó không chạy
bác nào biết lỗi ở đâu không
mình muốn test trên localhost về url rewrite nhưng làm mãi không được(winxp)
            
         đã bâtj mod_rewrite
dùng 2 file để test nhưng nó không chạy
trong thư mục cwwwwamppmail
có 2 file
1 .htaccess
--------------------------
# htaccess file
RewriteEngine On
RewriteBase /mail
RewriteRule ^index/(.*)$ /index.php?id=$1
--------------------------
2 index.php
<html>
<body >
<?php
if(isset($_GET['id']))
{
echo $_GET['id'];
}?>
<a href="index.php?id=567">wer</a>
<a href="index.php?id=567">wer</a>
<a href="index.php?id=567">wer</a>
<a href="index.php?id=567">wer</a>
<a href="index.php?id=567">wer</a>
<a href="index.php?id=567">wer</a>
<?php phpinfo(); ?>
</body>
</html>
---------------------
test localhost/mail
nhưng nó không chạy
bác nào biết lỗi ở đâu không
mình muốn test trên localhost về url rewrite nhưng làm mãi không được(winxp)
            Bài liên quan
         
               
            




1 .htaccess -------------------------- # htaccess file RewriteEngine On # RewriteBase /mail RewriteRule ^index/([0-9]+)$ /index.php?id=$1 -------------------------- 2 index.php <html> <body > <?php if(isset($_GET['id'])) { echo $_GET['id']; }?> <a href="index/567">wer</a> <a href="index/568">wer</a> <a href="index/569">wer</a> <a href="index/570">wer</a> <a href="index/571">wer</a> <a href="index/572">wer</a> <?php phpinfo(); ?> </body> </html> ---------------------nhưng nó chạy ra trang localhost mà không in ra request nhỉ
<html> <head> <base href="http://localhost/rewrite/" /> <title>Test</title> </head> <body> <?php if (isset($_GET['id'])) { echo $_GET['id']; } ?> <a href="index/567">wer</a> <a href="index/568">wer</a> <a href="index/569">wer</a> <a href="index/570">wer</a> <a href="index/571">wer</a> <a href="index/572">wer</a> </body> </html>