.htaccess ModReWrite help
问题 I am having some trouble with my ReWrite code. Please note that the .htaccess file is in the subdomain folder (...public_html/subdomain/ ) I am simply trying to rewrite a page request: http://subdomain.mysite.com/home http://subdomain.mysite.com/index.php?page=home My .htaccess file looks like this... RewriteEngine On RewriteRule ^/([A-Za-z0-9\-\_])$ /index.php?page=$1 Does anything jump out at you? 回答1: Your current rule probably works for urls one character long (after the slash)! Add a +