这是我的.htaccess代码,下面的代码完全在localhost.in localhost中工作,它引导我找到一个未找到的页面(404)。 我的目录结构是www.mysite.com/shoppe /
RewriteEngine On
RewriteCond %{REQUEST_URI} main
RewriteRule ^main/([A-Za-z0-9-]+)/?$ /shoppe/main.php?main_id=$1 [L]
RewriteCond %{REQUEST_URI} sub
RewriteRule ^sub/([A-Za-z0-9-]+)/?$ /shoppe/sub.php?category=$1 [L]
RewriteCond %{REQUEST_URI} product
RewriteRule ^product/([A-Za-z0-9-]+)/?$ /shoppe/product.php?pro_ids=$1 [L]