实际上我的网站在本地主机上工作,为什么我在live中使用Internal Server Error?我在这里附上了我的.htaccess文件,里面有什么错误吗?
Options +FollowSymLinks
IndexIgnore */*
RewriteEngine on
# Make backend accessible via url:
RewriteRule ^sysadmin& backend.php
# if a directory or a file exists, use it directly
Rewrit
在我的.htaccess中有以下代码:
RewriteEngine On
RewriteRule ^/?([^/\.]+)/?$ $1.php [L]
RewriteRule ^/?([^/\.]+).php$ $1/ [R,L]
`RewriteRule ^/?([^/\.]+)/?$ $1.php [L]` is working fine. What this is doing is taking a url like `http://www.example.com/whatever` and making it read the page as `http://www.example.