我已将文件和数据库从BradPPresents.com复制到BradP.com.
由于"漂亮的URL"由joomla!启用,因此需要.htaccess文件才能正确显示页面.
您可以看到数据库和所有连接都在http://bradp.com/index.php上运行,但http://bradp.com/home.html不起作用,因为它依赖于.htaccess文件来解析URL.
我将相同的htaccess文件从bradppresents.com(当前工作正常)复制到bradp.com,当文件存在时我收到"内部服务器错误".一旦删除,错误就会消失,但当然网站不能按需运行.
我希望有人可以为我照亮一点.
这是.htaccess文件
RewriteEngine On RewriteBase / RewriteCond %{REQUEST_URI} (/|\.htm|\.php|\.html|\.aspx|\.asp|/[^.]*)$ [NC] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule (.*) index.php ## This attempts to block the most common type of exploit `attempts` to Joomla! # # Block out any script trying to set a mosConfig value through the URL RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR] # Block out any script trying to base64_encode crap to send via URL RewriteCond %{QUERY_STRING} base64_encode.*\(.*\) [OR] # Block out any script that includes aTags | 热门标签RankList | 热门文章
- 1C#等待问题
- 2CSS悬停样式在不相关的元素上?
- 3事件处理程序S100的方法名称
- 4如何分发asdf/quicklisp依赖项以及使用Embeddable Common Lisp编译的应用程序?
- 5Excel VBA保存截图
- 6如何显示文本框重复值的警报
- 7我可以在LINQ to Entities查询中使用CAST吗?
- 8何时将配置放在file.properties或Jndi中
- 9TreeView - 单击空白区域
- 10由Python 3.5破坏的Jupyter笔记本
- 11使用ScalatraSuite(FunSuiteLike)进行独立sbt项目的Scalatra测试失败
- 12我可以在AWS Cloudformation json模板的"参数"中使用"Fn :: Join"吗?
- 13包含列表太慢,如何改进?
- 14在TFS登记之前是否执行Get Latest强制要求,以免覆盖/丢失代码?
- 15TRUE和FALSE宏的奇怪定义
- 16神经网络:了解theano图书馆
- 17使用Clang将OpenCL编译为PTX时未解决的extern?
- 18Lua表 - 具有相同键的两个条目
- 19如何从try-catch简化return语句
- 20如何在UI测试期间在Swift应用程序中隐藏键盘