在 Symfony 1.4 项目中更改域时出错

Error when change domain in Symfony 1.4 project

请教高手。

我的 symfony 1.4 项目在一个域中运行良好,现在我将项目更改为另一个域(相同但在 .net 而不是 .com 中完成)。现在主页可以正常工作,但所有其他页面或同一页面的 link 个目标显示错误 "page not found"。奇怪的是,当我在路由之前使用扩展名 frontend.php 或 index.php 时,它工作正常。 (在开发模式下一切正常......)。

当然清缓存很多次了...

有什么想法吗?为什么更改域路由停止工作?

我还更改了新项目中的所有 htaccess 扩展...

谢谢!

您需要在网络服务器上启用 mod_rewrite,您的 .htaccess 文件应如下所示:

Options +FollowSymLinks +ExecCGI

<IfModule mod_rewrite.c>
  RewriteEngine On

  # uncomment the following line, if you are having trouble
  # getting no_script_name to work
  #RewriteBase /

  # we skip all files with .something
  #RewriteCond %{REQUEST_URI} \..+$
  #RewriteCond %{REQUEST_URI} !\.html$
  #RewriteRule .* - [L]

  # we check if the .html version is here (caching)
  RewriteRule ^$ index.html [QSA]
  RewriteRule ^([^.]+)$ .html [QSA]
  RewriteCond %{REQUEST_FILENAME} !-f

  # no, so we redirect to our front web controller
  RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>