php – IIS服务器,如何为Laravel 5配置url重写?

php – IIS服务器,如何为Laravel 5配置url重写?,第1张

概述目前,Uni只提供了一个IIS服务器来托管我们的php网站,我们想要使用Laravel框架,它确实在主页上工作.但不是任何其他控制器. 我的公用文件夹中的当前web.config是, <configuration> <system.webServer> <rewrite> <rules> <rule name="Imported Rule 1" stopPr 目前,Uni只提供了一个IIS服务器来托管我们的PHP网站,我们想要使用Laravel框架,它确实在主页上工作.但不是任何其他控制器.

我的公用文件夹中的当前web.config是,

<configuration>  <system.webServer>    <rewrite>      <rules>        <rule name="imported Rule 1" stopProcessing="true">          <match url="^(.*)/$" ignoreCase="false" />          <conditions>            <add input="{REQUEST_filename}" matchType="IsDirectory" ignoreCase="false" negate="true" />          </conditions>          <action type="Redirect" redirectType="Permanent" url="/{R:1}" />        </rule>        <rule name="imported Rule 2" stopProcessing="true">          <match url="^" ignoreCase="false" />          <conditions>            <add input="{REQUEST_filename}" matchType="IsDirectory" ignoreCase="false" negate="true" />            <add input="{REQUEST_filename}" matchType="Isfile" ignoreCase="false" negate="true" />          </conditions>          <action type="Rewrite" url="index.PHP" />        </rule>      </rules>    </rewrite>  </system.webServer></configuration>

我的路线是,

Route::get('/',function () {    return vIEw('welcome');});Auth::routes();Route::get('/home','HomeController@index')->name('home');

我不太了解IIS,所以你有任何想法来配置它以使其工作吗?

附:
我们无权在阵营中配置IIS服务器,我们有权做的是上传web.config.

提前致谢.

解决方法 最后我解决了这个问题,这不是一个完美的方式,但它确实奏效了.

<rule name="rewrite all requests to index.PHP" stopProcessing="true">     <match url="^(.*)$" ignoreCase="false" />     <conditions logicalGrouPing="MatchAll">         <add input="{REQUEST_filename}" matchType="Isfile" negate="true" pattern="" ignoreCase="false" />     </conditions>     <action type="Rewrite" url="index.PHP" appendqueryString="true" /></rule><rule name="Redirect / to index.PHP" stopProcessing="true">     <match url="^" ignoreCase="false" />     <action type="Rewrite" redirectType="Permanent" url="index.PHP" /></rule>

正如我在开始时提到的,它不是一个完美的解决方案,它将所有URL重写为index.PHP,所以URL不漂亮,就像,

> a.com/login – > a.com/index.PHP/login
> a.com/ – > a.com/index.PHP
> a.com/login/index.PHP – > 404

因为我对IIS配置/重写不是很熟悉,所以必须有一些更好的解决方案,所以改进这行配置文件的建议会很棒.

无论如何,它在您无权设置IIS服务器的情况下工作.

它应该使Laravel项目在任何IIS服务器上运行,而无需更改服务器的设置.

参考文献

> IIS rewrite and asp.net route
> redirect all to one page

总结

以上是内存溢出为你收集整理的php – IIS服务器,如何为Laravel 5配置url重写?全部内容,希望文章能够帮你解决php – IIS服务器,如何为Laravel 5配置url重写?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1253635.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-07
下一篇 2022-06-07

发表评论

登录后才能评论

评论列表(0条)

保存