我无权访问控制面板工具,不知道如何正确执行此操作。我创建了以下重写规则来节省大量工作 - 但在实现服务器的 Microsoft 时效果并不好。
RewriteRule ^scotsman-photo-products-([A-Za-z0-9-_]+)/?$ scotsman-photo-products.php?pg=$1
RewriteRule ^make-scotsman-photo-([A-Za-z0-9-_]+)/?$ make-scotsman-photo.php?pg=$1
似乎对配置文件所做的任何更改都会产生 500 错误 - 除非通过“官方”路由,否则服务器是否可能不允许任何更改?
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<defaultDocument>
<files>
<add value="index.php" />
</files>
</defaultDocument>
</system.webServer>
</configuration>
是当前的内容。