-2

I have project in .net mvc3 .I want to integrating PHP pages into .NET MVC 3 And Deploy?

1 Answers1

0

Just put the php page in a subdirectory like www.mypage.com/php. Then change the routing so that your subdirectory is ignored. See this question for details: IgnoreRoute for PHP Site embedded in ASP.NET MVC 3

Community
  • 1
  • 1
David
  • 853
  • 8
  • 24
  • The page you are requesting cannot be served because of the extension configuration. If the page is a script, add a handler. If the file should be downloaded, add a MIME map. – solanki dev Feb 01 '16 at 11:05
  • This seems to be a separate issue with your .Net configuration. http://stackoverflow.com/questions/4388066/the-page-you-are-requesting-cannot-be-served-because-of-the-extension-configura – David Feb 01 '16 at 12:36
  • Or try this: http://www.chrisvandesteeg.nl/2007/01/12/iis7-http-error-4043-not-found-for-php-cfm-etc/ – David Feb 01 '16 at 12:38
  • This Solved But Now New Issue given below – solanki dev Feb 01 '16 at 12:48
  • The FastCGI process exited unexpectedly – solanki dev Feb 01 '16 at 12:48
  • When you get an error, search that error in google. There are so many solutions. for instance http://stackoverflow.com/questions/23007551/the-fastcgi-process-exited-unexpectedly – David Feb 01 '16 at 13:01
  • Hi David I have done all tasks according to your given url but no solution yet. – solanki dev Feb 02 '16 at 04:50
  • C:\php\php-cgi.exe - The FastCGI process exited unexpectedly – solanki dev Feb 02 '16 at 05:19
  • Maybe post a new question with your new problem. But you should provide more information because this error just means something caused your php to crash. It could be anything. – David Feb 02 '16 at 09:08