我的 .htaccess 文件中有这段代码:
Options +FollowSymLinks -MultiViews -Indexes
RewriteEngine On
RewriteRule ^(design|JS|css|images|remoteLibraries|remoteLibraries/xAJAX/xajax_js/)($|/) - [L]
RewriteRule ^([a-zA-Z_]+)$ index.php?action=$1
RewriteRule ^([a-zA-Z_]+)/([a-z_A-Z]+)$ index.php?action=$1&tip=$2
它在我的本地 Apache 服务器上运行良好,但是在将其上传到 GoDaddy 时,我得到的只是 404 Not found 错误...
任何想法?