带有javascript哈希的PHP URL格式

时间:2017-07-18 09:40:52

标签: javascript php

使用JavaScript可以在不使用服务器.htaccess文件

的情况下构建此URL
$LogText = "C:\temp\1.txt"
[regex]$Regex = "\. (\d+):[1]"
$Matches = $Regex.Matches($LogText)
$Matches | ForEach-Object {
  Write-Host  $Matches
}
#$array = @()
#$array = new-object collections.arraylist
$array = while ($Matches.Success) {
  Write-Host $array[i++]
}

# -------------------------------------------------------------------

$text = Get-Content "C:\temp\1.txt"
[regex]$Regex = "\d"
$Matches = $Regex.Matches($text)

# -------------------------------------------------------------------

$pos = $text.IndexOf(":")
$rightPart = $text.Substring($pos+1)
Write-Host $rightPart

index.php#hello.php?a=b&c=d

我已将index.php#hello?a=b&c=d 内容加载到hello.php。它已通过AJAX完成,我在index.php页面中显示了hello.php的数据。

我的问题:是否可以提出网址结构?

0 个答案:

没有答案